
:root {
  /* Updated Color Palette */
  --primary-color: #263A6D;
  --secondary-color: #3498DB;
  --accent-color: #508C9B;
  --background-light: #EEEEEE;
  --text-dark: #201E43;
  --white: #FFFFFF;
  --border-color: #C0C0C0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header Redesign */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.emblem {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.header-text h1 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.header-text h2 {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 500;
}

/* Navigation Redesign */
.navigation {
  background-color: var(--primary-color);
  padding: 0.75rem 2rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.search-container {
  display: flex;
  align-items: center;
}

.search-container input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 250px;
}

.search-container button {
  background-color: var(--secondary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0 4px 4px 0;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-container button:hover {
  background-color: var(--accent-color);
}

/* Breadcrumb Redesign */
.breadcrumb {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

/* Section Navigation */
.section-nav {
  display: flex;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  gap: 1rem;
  overflow-x: auto;
}

.section-nav button {
  background-color: transparent;
  border: none;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-nav button.active {
  background-color: var(--secondary-color);
  color: var(--white);
}

.section-nav button:hover {
  background-color: rgba(52, 152, 219, 0.1);
}

/* Score Section */
.score-section {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.score-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.score-input {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-input input {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem;
  width: 100px;
}

/* Table Redesign */
.table-container {
  background-color: var(--white);
  border-radius: 8px;
  margin: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--background-light);
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Add Button */
.add-button {
  display: flex;
  justify-content: flex-end;
  margin: 1rem 2rem;
}

.add-button button {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-button button:hover {
  background-color: #2ECC71;
}

/* Navigation Buttons */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin: 1rem 2rem;
}

.navigation-buttons button {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn, .next-btn {
  background-color: var(--secondary-color);
  color: var(--white);
}

.draft-btn {
  background-color: var(--background-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.submit-btn {
  background-color: var(--accent-color);
  color: var(--white);
}

/* Modal Redesign */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.modal-header h3 {
  color: var(--primary-color);
}

.close {
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Form Styling */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--background-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .navigation {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .section-nav {
    flex-direction: column;
  }

  .navigation-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.modal.hidden {
  display: none;
}


/* Existing CSS remains the same, add these new styles */

.user-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-container {
  position: relative;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.profile-info:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  color: var(--white);
  font-weight: 500;
}

.dropdown-icon {
  color: var(--white);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  margin-top: 0.5rem;
}

.profile-dropdown.hidden {
  display: none;
}

.profile-dropdown ul {
  list-style: none;
  padding: 0.5rem 0;
}

.profile-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
}

.profile-dropdown ul li a:hover {
  background-color: var(--background-light);
}

.profile-dropdown ul li a i {
  width: 20px;
  text-align: center;
}

.profile-dropdown .logout a {
  color: #E74C3C;
}

.notification-bell {
  position: relative;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.notification-bell:hover {
  color: var(--secondary-color);
}

.notification-bell .fas {
  font-size: 1.25rem;
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #E74C3C;
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Existing CSS remains the same, add these new styles */

.user-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-container {
  position: relative;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.profile-info:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  color: var(--white);
  font-weight: 500;
}

.dropdown-icon {
  color: var(--white);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  margin-top: 0.5rem;
}

.profile-dropdown.hidden {
  display: none;
}

.profile-dropdown ul {
  list-style: none;
  padding: 0.5rem 0;
}

.profile-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease;
}

.profile-dropdown ul li a:hover {
  background-color: var(--background-light);
}

.profile-dropdown ul li a i {
  width: 20px;
  text-align: center;
}

.profile-dropdown .logout a {
  color: #E74C3C;
}

.notification-bell {
  position: relative;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.notification-bell:hover {
  color: var(--secondary-color);
}

.notification-bell .fas {
  font-size: 1.25rem;
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #E74C3C;
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev-btn{
    float: right;
}
.submit-btn {
  background-color:#2ECC71 ;
  color: var(--white);
  padding: 15px 19px;
  border-radius: 6px;
}
.reset-btn{
  background-color:#6d6d61 ;
  color: var(--white);
  padding: 15px 19px;
  border-radius: 6px;
  margin-right: 5px;
}
/* Section Styling */
#faculty-appraisal-links {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    margin: 20px auto;
    max-width: 800px;
}

#faculty-appraisal-links h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

/* List Styling */
#faculty-appraisal-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#faculty-appraisal-links ul li {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

#faculty-appraisal-links ul li:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#faculty-appraisal-links ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #0073e6;
    text-decoration: none;
}

#faculty-appraisal-links ul li a:hover {
    text-decoration: underline;
}

#faculty-appraisal-links ul li p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    #faculty-appraisal-links {
        padding: 15px;
    }

    #faculty-appraisal-links h2 {
        font-size: 20px;
    }

    #faculty-appraisal-links ul li {
        padding: 10px;
    }

    #faculty-appraisal-links ul li a {
        font-size: 16px;
    }

    #faculty-appraisal-links ul li p {
        font-size: 13px;
    }
}
 /* Embedded CSS from the provided stylesheet */
        :root {
            --primary-color: #201E43;
            --secondary-color: #134B70;
            --accent-color: #508C9B;
            --background-light: #EEEEEE;
            --text-dark: #201E43;
            --white: #FFFFFF;
            --border-color: #C0C0C0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: var(--background-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        .header {
            background-color: var(--white);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .emblem {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .header-text h1 {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .header-text h2 {
            color: var(--secondary-color);
            font-size: 1rem;
            font-weight: 500;
        }

        .navigation {
            background-color: var(--primary-color);
            padding: 0.75rem 2rem;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .breadcrumb {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
        }

        .breadcrumb h2 {
            color: var(--white);
        }

        #faculty-appraisal-links {
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            font-family: 'Arial', sans-serif;
            margin: 20px auto;
            max-width: 800px;
        }

        #faculty-appraisal-links h2 {
            font-size: 24px;
            color: #333;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .welcome {
            padding: 20px;
            background-color: var(--white);
            margin: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .welcome ul {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
        }

        .welcome ul li {
            margin-bottom: 10px;
            padding: 10px;
            background-color: var(--background-light);
            border-radius: 4px;
        }

        .welcome ul li a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .welcome ul li a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .navigation {
                flex-direction: column;
            }

            .nav-links {
                flex-direction: column;
                align-items: center;
            }
        }