.tamin-container {
    max-width: 1200px;
    margin: 2% auto;
    padding: 20px;
}

.tamin-header {
    background: #990000;
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(153, 0, 0, 0.3);
}

.tamin-header h3 {
    color: white !important;
    margin-bottom: 15px;
}

.tamin-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tabs {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.tab-list {
    display: flex;
    background: #f8f0f0;
    border-bottom: 3px solid #990000;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.tab-item {
    flex: 1;
    text-align: center;
}

.tab-link {
    display: block;
    padding: 15px 20px;
    color: #990000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.tab-link:hover {
    background-color: #f0e0e0;
    color: #660000;
}

.tab-link.active {
    background-color: white;
    border-bottom-color: #990000;
    color: #990000;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.service-section {
    margin-bottom: 20px;
}

.service-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border-right: 4px solid #990000;
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: bold;
    color: #990000;
    min-width: 100px;
    margin-left: 10px;
}

.info-value {
    color: #333;
}

.tamin-table {
    margin: 0;
}

.tamin-table thead th {
    background-color: #990000;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
}

.tamin-table tbody tr {
    transition: background-color 0.2s ease;
}

.tamin-table tbody tr:hover {
    background-color: #f8f0f0;
}

.tamin-table td,
.tamin-table th {
    vertical-align: middle;
    text-align: center;
    padding: 10px;
}

.text-muted {
    color: #6c757d !important;
}

.small {
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .tamin-container {
        padding: 10px;
        margin-top: 8%;
    }

    .tamin-header {
        padding: 15px;
    }

    .tab-link {
        padding: 10px;
        font-size: 0.85em;
    }

    .tab-content {
        padding: 10px;
    }

    .info-label {
        min-width: 80px;
        font-size: 0.9em;
    }

    .tamin-table {
        font-size: 0.85em;
    }

    .tamin-table td,
    .tamin-table th {
        padding: 6px;
    }
}
.tamin-search-box {
    background: #f8f9fa;
    border: 1px solid #e3e6ea;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
