.page-container {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.card-header svg {
    width: 20px;
    height: 20px;
    color: var(--teal-primary);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-grid div:nth-child(even) {
    background-color: var(--bg-base);
    border-radius: 0.75rem;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 10px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-primary);
    font-weight: 500;
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.badge {
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background-color: var(--lite-bg-clr);
    color: var(--teal-primary);
}
.table-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 1rem;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.table-actions {
    display: flex;
    gap: 0.75rem;
}

.badge-danger {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.btn svg {
    width: 16px;
    height: 16px;
}
