/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header Styles */
.navbar-brand img {
    max-height: 40px;
}

/* Card Styles */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
}

/* Button Styles */
.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2e59d9;
}

/* Form Styles */
.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

/* Alert Styles */
.alert {
    border-radius: 5px;
}

/* Table Styles */
.table th {
    background-color: #f8f9fc;
    border-bottom: 2px solid #e3e6f0;
}

/* Profile Picture Styles */
.profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Gallery Styles */
.gallery-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #343a40;
    color: white;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-pic {
        width: 100px;
        height: 100px;
    }
}

/* Calendar Styles */
#event-calendar {
    width: 100%;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fc {
    max-width: 100%;
}

.fc-header-toolbar {
    padding: 10px;
    margin-bottom: 0;
}

.fc-toolbar-title {
    font-size: 1.2em;
}

.fc-daygrid-event {
    white-space: normal;
    padding: 2px 4px;
}

.fc-event {
    cursor: pointer;
    background-color: #4e73df;
    border-color: #4e73df;
}

.fc-event:hover {
    background-color: #2e59d9;
    border-color: #2e59d9;
}

.fc-day-today {
    background-color: rgba(78, 115, 223, 0.1) !important;
}

.fc-button {
    background-color: #f8f9fc;
    border-color: #ddd;
    color: #333;
}

.fc-button:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.fc-button-active {
    background-color: #4e73df;
    border-color: #4e73df;
    color: white;
}
/* Announcements Styles */
.announcements-list .card {
    transition: transform 0.2s ease;
}

.announcements-list .card:hover {
    transform: translateY(-2px);
}

.announcement-content {
    white-space: pre-line;
}

.bi-pin-angle-fill {
    color: #ffc107;
    margin-right: 8px;
}

/* Make pinned announcements stand out */
.border-warning {
    border: 1px solid rgba(255, 193, 7, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .announcements-list .card-header h5 {
        font-size: 1.1rem;
    }
}

/* Dashboard specific styles */
.announcements-list .bi-pin-angle-fill {
    margin-right: 6px;
}

.card-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Make quick links more compact */
.quick-links .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Profile image sizing */
.profile-img-sm {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
/* Add to your existing styles */
.card-footer small {
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Document icons */
.fa-file-pdf { color: #d92626; }
.fa-file-word { color: #2b579a; }
.fa-file-excel { color: #217346; }
.fa-file-powerpoint { color: #d24726; }