input#uploadable_file {
    width: 95%;
    margin-top: 5px;
    margin-bottom: 5px;
    --_n-button-inline-size: 100%;
}

/* Notification Management Styles */
#subscriptions-container {
    min-height: 200px;
}

#subscriptions-list nord-card {
    margin-bottom: var(--n-space-m);
}

#endpoint-url-container {
    animation: fadeIn 0.3s ease-in-out;
}

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

.unsubscribe-btn {
    transition: all 0.2s ease;
}

.unsubscribe-btn:hover {
    transform: translateY(-1px);
}

/* Responsive adjustments for notification management */
@media (max-width: 768px) {
    nord-card {
        padding: var(--n-space-m) !important;
    }
    
    #subscriptions-list nord-card [slot="header"] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--n-space-s);
    }
}

.table-header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-column-greater-than {
    background-color: var(--n-color-status-success);
    color: white;
}

.table-column-best {
    background-color: var(--n-color-status-success);
    color: white;
}

.table-column-good {
    background-color: #4ff270;
    color: white;
}

.table-column-danger {
    background-color: var(--n-color-status-danger);
    color: white;
}

.projects_counts_tables {
    min-width: 1100px;
}

.clients_tables {
    min-width: 900px;
}

.tab-item {
    padding: 10px;
    cursor: pointer;
    text-align: center;
    color: #36434a;
}

.active-tab {
    border-bottom: 2px solid #3559c7;
}

.tabs-container {
    background: #ffffff;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.comparison_tables thead th {
    background-color: #401197;
    color: white;
}

.comparison_tables td {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .active, .accordion:hover {
    background-color: #ccc;
  }
    
  .panel {
    padding: 0 18px;
    background-color: white;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }  

  .pretty-json {
    font-family: monospace;
    white-space: pre-line;
    word-break: break-all;
    font-size: 0.95em;
}

.pagination-btn {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.active-pagination-btn {
    background-color: #3559c7;
    color: white;
}

.pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
