* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.3;
    font-size: 13px;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 8px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #fff;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

h1 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: #1a1a1a;
    display: inline-block;
}

.export-import-btn {
    padding: 6px 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.export-import-btn:hover {
    background-color: #2980b9;
}

.settings-btn {
    padding: 6px 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.settings-btn:hover {
    background-color: #2980b9;
}

.legend {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.search-filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

#searchInput {
    padding: 4px 28px 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 11px;
    width: 200px;
    transition: all 0.2s ease;
}

#searchInput:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

#searchInput::placeholder {
    color: #aaa;
}

.search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    padding: 2px 4px;
    display: none;
    user-select: none;
}

.search-clear:hover {
    color: #e74c3c;
}

.search-clear.visible {
    display: block;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 3px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    user-select: none;
}

.legend-item:hover {
    background-color: #f0f0f0;
}

.legend-item.active {
    border-color: #999;
    background-color: #fff;
}

.legend-item:not(.active) {
    opacity: 0.4;
}

.legend-item:not(.active) .legend-box {
    opacity: 0.5;
}

.legend-box {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    border: 1px solid #ddd;
    flex-shrink: 0;
}

/* State Colors */
.state-licensed-high {
    background-color: #2ecc71;
}

.state-licensed-medium {
    background-color: #f1c40f;
}

.state-licensed-low {
    background-color: #e74c3c;
}

.state-licensed-not-used {
    background-color: #95a5a6;
}

.state-plan-to-adopt {
    background-color: #3498db;
}

.state-not-licensed {
    background-color: #2c3e50;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px;
    flex: 1;
    overflow-y: auto;
    padding: 2px;
}

.category-card {
    background-color: #fff;
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.category-title {
    font-size: 0.9rem;
    margin: 0;
    color: #2c3e50;
    border-bottom: 1px solid #3498db;
    padding-bottom: 4px;
    font-weight: 600;
    flex: 1;
}

.add-product-btn {
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 3px;
    width: 22px;
    height: 22px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 6px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.add-product-btn:hover {
    background-color: #229954;
}

.category-card[data-imported="true"] .category-title {
    border-bottom-color: #9b59b6;
}

.category-card[data-imported="true"] .category-title::after {
    content: " (Imported)";
    font-size: 0.7rem;
    color: #9b59b6;
    font-weight: normal;
    font-style: italic;
}

.products-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-item {
    padding: 4px 6px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.product-item:hover {
    transform: translateX(2px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.product-item[data-state="licensed-high"] {
    background-color: #2ecc71;
    color: #fff;
}

.product-item[data-state="licensed-medium"] {
    background-color: #f1c40f;
    color: #333;
}

.product-item[data-state="licensed-low"] {
    background-color: #e74c3c;
    color: #fff;
}

.product-item[data-state="licensed-not-used"] {
    background-color: #95a5a6;
    color: #fff;
}

.product-item[data-state="plan-to-adopt"] {
    background-color: #3498db;
    color: #fff;
}

.product-item[data-state="not-licensed"] {
    background-color: #2c3e50;
    color: #fff;
}

.product-name {
    font-weight: 500;
    line-height: 1.2;
    flex: 1;
}

.product-info-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    color: inherit;
    width: 18px;
    height: 18px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.7;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.product-info-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.product-item[data-state="licensed-medium"] .product-info-btn {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.product-item[data-state="licensed-medium"] .product-info-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 4px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 16px;
}

.close:hover,
.close:focus {
    color: #000;
}

#modalProductName {
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 0;
    font-size: 1.2rem;
}

#modalCategory {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

#modalDescription {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

#modalTables h3 {
    color: #34495e;
    margin-bottom: 8px;
    font-size: 1rem;
}

#tablesList {
    list-style: none;
    padding-left: 0;
    max-height: 200px;
    overflow-y: auto;
}

#tablesList li {
    background-color: #ecf0f1;
    padding: 5px 8px;
    margin-bottom: 3px;
    border-radius: 2px;
    font-family: 'Courier New', monospace;
    color: #2c3e50;
    font-size: 11px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    h1 {
        font-size: 1.1rem;
    }

    .header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .legend {
        display: flex;
        gap: 8px;
    }

    .legend-item {
        font-size: 10px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
}

/* Export/Import Modal Styles */
.modal-large {
    max-width: 700px;
}

.close-export {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 16px;
}

.close-export:hover,
.close-export:focus {
    color: #000;
}

.close-settings {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 16px;
}

.close-settings:hover,
.close-settings:focus {
    color: #000;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 8px;
    margin: 20px 0;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #7f8c8d;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: #2c3e50;
    background-color: #f8f9fa;
}

.tab-btn.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.export-section,
.import-section,
.json-viewer-section,
.instance-section,
.reset-section {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.export-section h3,
.import-section h3,
.json-viewer-section h3,
.reset-section h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.export-section p,
.import-section p,
.reset-section p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
}

.action-btn {
    padding: 8px 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.action-btn:hover {
    background-color: #229954;
}

.danger-btn {
    background-color: #e74c3c !important;
}

.danger-btn:hover {
    background-color: #c0392b !important;
}

#importJsonBtn {
    background-color: #e67e22;
}

#importJsonBtn:hover {
    background-color: #d35400;
}

#copyJsonBtn {
    background-color: #9b59b6;
    margin-top: 10px;
}

#copyJsonBtn:hover {
    background-color: #8e44ad;
}

#jsonViewer {
    width: 100%;
    min-height: 200px;
    max-height: 300px;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    resize: vertical;
}

.import-status {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.import-status.success {
    color: #27ae60;
}

.import-status.error {
    color: #e74c3c;
}

.unmatched-info {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.unmatched-info:empty {
    display: none;
}

/* Add Product Form Styles */
.close-add-product {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 16px;
}

.close-add-product:hover,
.close-add-product:focus {
    color: #000;
}

#addProductForm {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #2c3e50;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #7f8c8d;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cancel-btn {
    background-color: #95a5a6;
}

.cancel-btn:hover {
    background-color: #7f8c8d;
}

.form-status {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status.success {
    color: #27ae60;
}

.form-status.error {
    color: #e74c3c;
}

/* Instance Configuration */
.help-text {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 4px;
    font-style: italic;
}

.url-preview {
    margin-top: 8px;
    padding: 8px;
    background-color: #e8f4f8;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #2c3e50;
    border-left: 3px solid #3498db;
}

.url-preview:empty {
    display: none;
}

.url-preview.error {
    background-color: #ffe8e8;
    border-left-color: #e74c3c;
    color: #e74c3c;
}

.instance-info {
    margin-top: 20px;
    padding: 12px;
    background-color: #e8f4f8;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.instance-info h4 {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #2c3e50;
}

.current-instance-display {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: bold;
}

.instance-help {
    margin-top: 20px;
    padding: 12px;
    background-color: #fff3cd;
    border-radius: 4px;
    border-left: 4px solid #f1c40f;
}

.instance-help h4 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: #856404;
}

.instance-help ul {
    margin: 0;
    padding-left: 20px;
}

.instance-help li {
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: #856404;
}

.instance-help code {
    background-color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

/* Instance Links in Product Modal */
.instance-links-section {
    margin: 15px 0;
    padding: 12px;
    background-color: #e8f4f8;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.instance-links-section h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #2c3e50;
}

.instance-links-section a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 5px 10px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.instance-links-section a:hover {
    background-color: #2980b9;
}

.instance-links-section.hidden {
    display: none;
}

/* ServiceNow Script Tab Styles */
.sn-script-section {
    padding: 20px;
}

.sn-script-section .help-text {
    margin: 10px 0;
    padding: 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.usage-category {
    display: inline-block;
    padding: 2px 6px;
    margin: 0 2px;
    background-color: #3498db;
    color: white;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 500;
}

.script-actions {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

#scriptOutput {
    margin-top: 20px;
}

#scriptOutput h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.script-code {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    max-height: 500px;
    overflow-y: auto;
    white-space: pre;
}

.script-code::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.script-code::-webkit-scrollbar-track {
    background: #34495e;
}

.script-code::-webkit-scrollbar-thumb {
    background: #7f8c8d;
    border-radius: 4px;
}

.script-code::-webkit-scrollbar-thumb:hover {
    background: #95a5a6;
}

/* Import Methods */
.import-method {
    margin: 15px 0;
    padding: 12px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.import-method h4 {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: #495057;
    font-weight: 600;
}

#importTextarea {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    resize: vertical;
    margin-bottom: 10px;
    background-color: #f8f9fa;
}

#importTextarea:focus {
    outline: none;
    border-color: #3498db;
    background-color: #fff;
}

#importTextarea::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.import-method .action-btn {
    margin-right: 8px;
}

#importFromTextBtn {
    background-color: #e67e22;
}

#importFromTextBtn:hover {
    background-color: #d35400;
}

/* Modal Actions */
.modal-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.delete-btn {
    padding: 8px 16px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.delete-btn:hover {
    background-color: #c0392b;
}

.delete-btn:active {
    background-color: #a93226;
}

/* Reset Options */
.reset-option {
    margin: 25px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.reset-option:first-child {
    margin-top: 0;
}

.reset-option h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.reset-option > p {
    margin: 0 0 12px 0;
    font-size: 0.85rem;
    color: #666;
}

.reset-option .form-status {
    margin-top: 10px;
}

/* Entitlements Section Styles */
/* Entitlements Search Section */
.entitlements-section {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e1e4e8;
}

.entitlements-section h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: #1a1a1a;
}

.entitlements-search {
    position: relative;
    margin-bottom: 15px;
}

.entitlements-search input {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 1px solid #d1d5da;
    border-radius: 4px;
    font-size: 0.9rem;
}

.entitlements-search .search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.5rem;
    color: #999;
    display: none;
}

.entitlements-search .search-clear:hover {
    color: #333;
}

.entitlements-results {
    max-height: 400px;
    overflow-y: auto;
}

.entitlement-result {
    background-color: #fff;
    border: 1px solid #d1d5da;
    border-radius: 4px;
    margin-bottom: 8px;
}

.entitlement-summary {
    padding: 10px 12px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: #24292e;
    user-select: none;
}

.entitlement-summary:hover {
    background-color: #f6f8fa;
}

.entitlement-summary::-webkit-details-marker {
    display: none;
}

.entitlement-details {
    padding: 0 12px 12px 12px;
    border-top: 1px solid #e1e4e8;
}

.entitlement-link-section {
    margin: 10px 0;
}

.entitlement-pdf-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.entitlement-pdf-link:hover {
    background-color: #c82333;
}

.product-codes-section {
    margin-top: 10px;
}

.product-codes-section strong {
    display: block;
    margin-bottom: 6px;
    color: #24292e;
    font-size: 0.85rem;
}

.product-codes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-code {
    display: inline-block;
    padding: 3px 8px;
    background-color: #e1e4e8;
    border-radius: 3px;
    font-size: 0.75rem;
    font-family: monospace;
    color: #24292e;
}

.product-code-link {
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.product-code-link:hover {
    background-color: #0366d6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #586069;
    font-style: italic;
}

/* Entitlement Schedules Tab Styles */
.entitlement-schedules-section {
    padding: 10px 0;
}

.entitlement-schedules-section h3 {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.entitlement-schedules-section > p {
    margin-bottom: 15px;
    color: #586069;
    line-height: 1.5;
}

.schedules-search {
    position: relative;
    margin-bottom: 15px;
}

.schedules-search input {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    transition: border-color 0.2s ease;
}

.schedules-search input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.schedules-search .search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 20px;
    line-height: 1;
    padding: 0 4px;
    display: none;
}

.schedules-search .search-clear:hover {
    color: #333;
}

.schedules-search input:not(:placeholder-shown) ~ .search-clear {
    display: block;
}

.schedules-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    background: white;
}

.schedules-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #e1e4e8;
    transition: background-color 0.2s ease;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background-color: #f6f8fa;
}

.schedule-item.hidden {
    display: none;
}

.schedule-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.schedule-title {
    font-size: 14px;
    font-weight: 500;
    color: #24292e;
    margin: 0;
}

.schedule-pdf-link {
    font-size: 12px;
    color: #0366d6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.schedule-pdf-link:hover {
    color: #0256c5;
    text-decoration: underline;
}

.schedule-view-link {
    font-size: 12px;
    color: #0366d6;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid #0366d6;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.schedule-view-link:hover {
    background-color: #0366d6;
    color: white;
}

.schedules-count {
    padding: 10px 15px;
    margin: 0;
    font-size: 12px;
    color: #586069;
    background-color: #f6f8fa;
    border-top: 1px solid #e1e4e8;
}

.no-schedules {
    padding: 30px 20px;
    text-align: center;
    color: #586069;
    font-size: 13px;
}

.no-schedules code {
    background-color: #f6f8fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 12px;
}
