@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background: linear-gradient(135deg, #013C4D 0%, #69AFC4 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 150px;
}

.dashboard-header {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.chart-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #013C4D 0%, #69AFC4 100%);
    color: white;
    border: none;
    padding: 15px;
}

.progress-bar {
    background-color: #013C4D;
}

.progress {
    height: 10px;
    border-radius: 5px;
}

.btn-primary {
    background: linear-gradient(135deg, #69AFC4 0%, #013C4D 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(105, 175, 196, 0.4);
}

.mini-chart {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.search-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 25px;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
}

.form-control:focus {
    border-color: #69AFC4;
    box-shadow: 0 0 0 0.2rem rgba(105, 175, 196, 0.25);
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, #013C4D 0%, #69AFC4 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-body {
    padding: 30px;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Assessment Styles */
.assessment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.assessment-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating-scale {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.scale-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.scale-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scale-number {
    font-size: 2rem;
    font-weight: bold;
    color: #013C4D;
    margin-bottom: 10px;
}

.scale-desc {
    font-size: 0.9rem;
    color: #666;
}

.category-section {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-header {
    color: white;
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-header:hover {
    opacity: 0.9;
}

.category-title {
    margin: 0;
    font-weight: 600;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.category-section .collapse.show .toggle-icon {
    transform: rotate(180deg);
}

.category-content {
    background: white;
    padding: 30px;
}

.principle-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.principle-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.principle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.principle-header h5 {
    margin: 0;
    color: #013C4D;
}

.rating-group {
    display: flex;
    gap: 10px;
}

.rating-label {
    cursor: pointer;
    position: relative;
}

.rating-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.rating-circle.rating-1 {
    background: #dc3545;
}

.rating-circle.rating-2 {
    background: #fd7e14;
}

.rating-circle.rating-3 {
    background: #ffc107;
    color: #000;
}

.rating-circle.rating-4 {
    background: #28a745;
}

.rating-label input:checked+.rating-circle {
    border-color: #013C4D;
    transform: scale(1.1);
}

.principle-content p {
    margin-bottom: 15px;
    color: #555;
}

.next-steps .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.next-steps .form-control:focus {
    border-color: #69AFC4;
    box-shadow: 0 0 0 0.2rem rgba(105, 175, 196, 0.25);
}