| /* Copyright 2025 The Chromium Authors |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. */ |
| |
| /* #css_wrapper_metadata_start |
| * #type=style-lit |
| * #css_wrapper_metadata_end */ |
| |
| :host { |
| align-items: center; |
| cursor: pointer; |
| display: flex; |
| flex: 1; |
| justify-content: space-between; |
| } |
| |
| body { |
| font-family: Arial, sans-serif; |
| margin: 20px; |
| background-color: #f4f4f9; |
| } |
| |
| .container { |
| background-color: #ffffff; |
| border: 2px solid #cccccc; |
| border-radius: 8px; |
| padding: 20px; |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); |
| } |
| |
| h1 { |
| color: #333; |
| } |
| |
| .infobar-table { |
| width: 100%; |
| border-collapse: collapse; |
| margin-top: 20px; |
| } |
| |
| .infobar-table th, |
| .infobar-table td { |
| padding: 12px 15px; |
| text-align: left; |
| border-bottom: 1px solid #ddd; |
| } |
| |
| .infobar-table thead { |
| background-color: #65acf9; |
| color: white; |
| } |
| |
| .infobar-table tbody tr:nth-child(even) { |
| background-color: #f9f9f9; |
| } |
| |
| .infobar-table tbody tr:hover { |
| background-color: #f1f1f1; |
| } |
| |
| .infobar-table button { |
| padding: 8px 12px; |
| border: none; |
| background-color: #65acf9; |
| color: white; |
| border-radius: 4px; |
| cursor: pointer; |
| transition: background-color 0.3s; |
| } |
| |
| .infobar-table button:hover { |
| background-color: #0056b3; |
| } |
| |
| .description { |
| font-style: italic; |
| color: #555; |
| } |