.announcement-container {
    width: 100%;
    padding: 0;
    margin: 10px auto;
        }
        
        .announcement-card {
            background: linear-gradient(135deg, #ffffff 0%, #e4e8f0 100%);
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px;
        }
        
        .announcement-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .announcement-header {
            background: linear-gradient(135deg, #ffb800 0%, #ff7500 100%);
            color: white;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .announcement-header h3 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .announcement-header h3 svg {
            margin-right: 10px;
        }
        
        .announcement-body {
            padding: 20px;
            color: #444;
        }
        
        .announcement-body p {
            font-size: 14px;
        }
        
        .announcement-footer {
            background-color: rgba(0, 0, 0, 0.03);
            padding: 12px 20px;
            color: #666;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .announcement-date {
            display: flex;
            align-items: center;
        }
        
        .announcement-date svg {
            margin-right: 5px;
        }
        
        .announcement-action {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .announcement-action:hover {
            color: #2173a6;
        }
        
        .announcement-action svg {
            margin-left: 5px;
        }
        
        @media (max-width: 600px) {
            .announcement-card {
                margin: 15px;
            }
            .announcement-header h3 {
                font-size: 1.2rem;
            }
            .announcement-footer {
                flex-direction: column;
                gap: 10px;
            }
        }


.assignments-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.assignment-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #edf2f7;
}

.assignment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.assignment-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, #4776E6, #8E54E9);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.assignment-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.assignment-date {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 500;
}

.assignment-body {
  padding: 20px;
  color: #4a5568;
}

.assignment-body p {
  margin: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.assignment-body p strong {
  min-width: 70px;
  display: inline-block;
  color: #2d3748;
}

.assignment-actions {
  padding: 15px 20px;
  display: flex;
  gap: 10px;
  background-color: #f8fafc;
  border-top: 1px solid #edf2f7;
}

.assignment-actions a,
.assignment-actions button {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.view-btn {
  background-color: #fa830f;
    color: #ffffff;
}

.view-btn:hover {
  background-color: #cbd5e0;
}

.download-btn {
  background-color: #ebf8ff;
  color: #3182ce;
}

.download-btn:hover {
  background-color: #bee3f8;
}

.resubmit-btn {
  background-color: #4776E6;
  color: white;
}

.resubmit-btn:hover {
  background-color: #3c65c4;
}

.no-content {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 40px auto;
  color: #718096;
}

.no-content i {
  font-size: 64px;
  margin-bottom: 20px;
  color: #cbd5e0;
}

.no-content p:first-of-type {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #4a5568;
}

.no-content p:last-of-type {
  font-size: 16px;
}

@media (max-width: 768px) {
  .assignments-container {
    grid-template-columns: 1fr;
  }
}

.exam-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.no-exams {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 500px;
  color: #64748b;
}

.no-exams p {
  margin: 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

.exam-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.exam-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e2e8f0;
}

.exam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.exam-header {
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  padding: 20px;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.exam-title {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  padding-right: 40px;
}

.exam-course {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

.exam-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exam-badge i {
  font-size: 18px;
}

.exam-body {
  padding: 20px;
  flex-grow: 1;
}

.exam-batch {
  font-size: 14px;
  color: #64748b;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 500;
}

.exam-batch i {
  margin-right: 5px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.status-pill i {
  margin-right: 5px;
}

.status-available {
  background-color: #dcfce7;
  color: #166534;
}

.status-unavailable {
  background-color: #f1f5f9;
  color: #64748b;
}

.exam-info {
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.exam-detail {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.progress-container {
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(to right, #4ade80, #10b981);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.exam-footer {
  padding: 15px 20px;
  border-top: 1px solid #e2e8f0;
}

.exam-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.exam-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.exam-btn:hover {
  background-color: #2563eb;
}

.exam-btn.disabled {
  background-color: #cbd5e0;
  cursor: not-allowed;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .exam-cards {
    grid-template-columns: 1fr;
  }
  
  .exam-info {
    grid-template-columns: 1fr;
  }
}


.tabs-container {
    width: 100%;
    margin: 0 auto;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #718096;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #4a5568;
}

.tab-btn.active {
    color: #3182ce;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3182ce;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.certificate-card {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.coursesdesigncard .card .card-body h3 {
    text-align: center;
}

.mb-4 .card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 0 0 auto;
    width: 25%;
    transition: transform 0.3s ease;
    padding-top: 5px;
    margin-top: 20px;
}

.card-body strong {
    color: #fa830f;
}

.certificate-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.certificate-card .card-header {
    background: linear-gradient(135deg, #6a11cb 0%, #fa830f 100%);
    color: white;
    border-radius: 10px 10px 0 0;
    padding: 15px;
}

.certificate-card .card-body {
    padding: 20px;
}

.certificate-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.certificate-card p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.certificate-card .btn-primary {
    background-color: #ffa400;
    border-color: #ffa400;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 14px;
}

.certificate-card .btn-primary:hover {
    background-color: #6a11cb;
    border-color: #6a11cb;
    transform: scale(1.05);
}

.coming-soon p {
    font-size: 1.2em;
    color: #6c757d;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.coming-soon {
    margin-top: 50px;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assignment-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.resubmit-btn {
    background: #28a745;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.resubmit-btn:hover {
    background: #218838;
}

.resubmitbtntext {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0;
}

.feedback-container {
    width: -webkit-fill-available;
    max-width: 800px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
}

.feedback-container h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    color: #333;
    padding-bottom: 10px;
}

.nowebinartext {
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    border: none;
    outline: none;
    border-radius: 5px;
    color: #fff;
    padding: 20px;
    margin-top: 20px;
}

.feedback-container p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: #666;
    padding-bottom: 10px;
}

.emoji {
    font-size: 30px;
    cursor: pointer;
    margin: 0 10px;
    transition: transform 0.2s ease;
}

.emoji:hover {
    transform: scale(1.2);
}

.emoji.selected {
    font-size: 50px;
    border-radius: 50%;
}

#feedbackForm div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#feedbackForm div span {
    padding-bottom: 20px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

.hidden {
    display: none;
}

#thankYouMessage {
    text-align: center;
    background-color: #f1f1f1;
    color: #ff6600;
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
    margin-top: 10px;
}

@media screen and (max-width: 600px) {
    .feedback-container {
        padding: 15px;
    }

    .submit-btn {
        padding: 10px;
    }

    #thankYouMessage {
        font-size: 18px;
    }
}


.coursesdesigncard {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.card-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    color: #fa830f;
    padding-top: 10px;
    padding-bottom: 20px;
    margin: 0;
}

.card-body p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 5px;
    margin: 0;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 0 0 auto;
    width: 25%;
    transition: transform 0.3s ease;
    padding-top: 40px;
    margin-top: 20px;
}

.card:hover {
    transform: translateY(-10px);
}

.card-header {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
}

.date {
    font-size: 14px;
    color: #888;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.course-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.btn-countdown,
.viewBatchContent,
.btn-pdf,
.btn-video {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-countdown:hover,
.viewBatchContent:hover,
.btn-pdf:hover,
.btn-video:hover {
    background-color: #0056b3;
}

.card.green {
    border-left: 5px solid #28a745;
}

.card.orange {
    border-left: 5px solid #fd7e14;
}

.card.red {
    border-left: 5px solid #dc3545;
}

.card.blue {
    border-left: 5px solid #ffc400;
}

.dashboardrowlayout {
    display: flex;
    flex-wrap: wrap;
}

.coming-soon p {
    padding-top: 10px;
}

.dashboardcollayout3 {
    flex: 0 0 auto;
    width: 25%;
}

.dashboardcollayout9 {
    flex: 0 0 auto;
    width: 75%;
}

.notificationtext span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.course-details {
    padding: 50px 0;
    margin-top: 30px;
}

.course-details h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.batch-info {
    font-size: 18px;
    margin-bottom: 30px;
}

.batch-info p {
    margin: 10px 0;
}

.batch-info strong {
    font-weight: bold;
}

.course-files {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.course-files p {
    font-size: 16px;
    margin-bottom: 15px;
}

.course-files a {
    display: inline-block;
    margin: 10px 0;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.course-files a:hover {
    background-color: #0056b3;
}

.join-section {
    text-align: right;
    margin-top: -17px;
}

.layoutcolcourses {
    width: 50%;
}

.btn-join:hover {
    background-color: #218838;
}

.instructor-info {
    margin-top: 20px;
}

.instructor-info p {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .course-details {
        padding: 0;
    }

    .course-details h1 {
        font-size: 24px;
    }

    .batch-info p {
        font-size: 16px;
    }

    .course-files a {
        font-size: 14px;
        padding: 8px 16px;
    }

    .btn-join {
        font-size: 16px;
        padding: 12px 25px;
    }
}

.btn-group {
    display: flex;
    gap: 10px;
}

.btn-view-content {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.admin-panel {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
    max-width: -webkit-fill-available;
    background-color: #fff;
    margin: 0 0 40px 0;
}

.profilimg {
    width: 40px;
    height: 40px;
    border-radius: 200px;
    margin-right: 5px;
}

.slidebar {
    width: max-width;
    height: auto;
    background-color: #fa830f;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.slidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.slidebar a {
    color: #fff;
    text-decoration: none;
}

.slidebar li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4rem;
    padding: 0;
}

.slidebar li:hover {
    background-color: #fa830f;
}

.slidebar li:hover a,
li#active a {
    color: #fff;
}

.slidebar i {
    padding: 20px 10px;
    margin: 0;
}

.main {
    float: left;
    width: 85%;
    background-color: rgb(255, 255, 255);
    position: relative;
    padding: 20px;
}

.main h2 {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: #fa830f;
    border-bottom: 1px solid #fa830f;
    padding-bottom: 10px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 20px;
}

.welcome {
    font-size: 20px;
    color: #333;
    margin: 20px 0;
}

.announcements {
    padding: 10px;
}

.announcements h3 {
    color: #fa830f;
    padding-bottom: 10px;
    margin: 0;
}

.dashboardlayouttextrow {
    display: flex;
    flex-wrap: wrap;
}

.dashboardlayouttextcol {
    flex: 0 0 auto;
    width: 50%;
}

.announcements p {
    padding-top: 10px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .emoji {
        font-size: 1.5em!important;
        margin-bottom: 10px;
    }
    
    .card {
        width: -webkit-fill-available;
        margin-top: 30px!important;
        margin-left: 20px!important;
        margin-right: 20px!important;
    }
    
    .fc-button .fc-icon {
        font-size: 0.5rem!important;
    }
    
    .fc-view-container *, .fc-view-container :after, .fc-view-container :before {
        font-size: 12px;
    }
    
    .assignment-header h3 {
        font-size: 12px;
    }
    
    .profile-info p {
        font-size: 12px;
    }
    
    .profile-info input[type="text"], .profile-info input[type="url"], .profile-info input[type="file"] {
        font-size: 12px;
    }
    
    .view-btn, .download-btn {
        padding: 8px;
        margin-right: 4px;
        font-size: 12px;
    }
    
    .resubmit-btn {
        font-size: 12px;
    }
    
    .assignment-date {
        font-size: 12px;
    }
    
    .assignment-actions {
        width: max-content;
        gap: 0;
    }
    
    .fc-toolbar h2 {
        font-size: 10px!important;
        text-align: center;
        margin: 0 auto;
    }
    
    .coming-soon {
        font-size: 14px;
        margin-top: 10px;
        padding: 0;
    }

    .slidebar {
        flex: 0 0 auto;
        width: 100%;
        padding: 0;
    }
    
    .slidebar ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; 
        scroll-behavior: smooth;
        scrollbar-width: none; 
    }

    .slidebar ul::-webkit-scrollbar {
        display: none; 
    }

    .profilimg {
        width: 20px;
        height: 20px;
    }

    .cta-button {
        font-size: 14px;
        box-shadow: 0 0 0 #fa830f;
        padding: 7px 10px;
    }

    .main h2 {
        font-size: 18px;
    }
    
    .slidebar i {
        font-size: 16px;
        padding: 7px 20px;
    }
    
    .slidebar li {
        font-size: 8px;
        text-align: center;
    }

    .main {
        width: 56%;
        padding: 0 5px !important;
    }

    .profile-img {
        width: 50px !important;
        height: 50px !important;
    }

    .dashboardlayouttextcol p {
        font-size: 9px !important;
    }

    .announcements {
        padding: 0 !important;
    }

    .announcements p {
        font-size: 9px;
    }

    .announcements h4 {
        font-size: 12px;
    }

    .dashboardlayouttextcol {
        width: 100%;
        padding: 0 10px !important;
    }

    .welcome {
        font-size: 12px;
        margin: 10px 0 0 0;
    }

    .emailtext {
        font-size: 12px;
    }

    .phonetext {
        font-size: 12px;
    }

    .announcements {
        padding: 10px;
    }

    .announcements h3 {
        font-size: 14px;
    }

    .main h2 {
        margin-top: 0;
    }

    .dashboardlayouttextrow {
        height: auto;
    }
}

.password-reset {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.password-reset h3 {
    margin-bottom: 10px;
}

.password-reset form label {
    display: block;
    margin-bottom: 5px;
}

.password-reset form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-reset form button {
    background-color: #fa830f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.password-reset form button:hover {
    background-color: #fa830f;
}

.admin-panel {
    display: flex;
}

#calendar {
    max-width: 1200px;
    margin: 20px auto;
}

.main .taboption .header {
    position: inherit;
    background-color: transparent;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefefe !important;
    border: 1px solid #888 !important;
    border-radius: 5px;
    width: 40% !important;
    margin: 15% auto !important;
    padding: 20px !important;
}

.modal-content #modalTitle {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: #fa830f;
    margin: 0;
}

.modal-content a {
    color: #007bff;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

#modalBody p {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4rem;
    margin: 0;
}

.close {
    position: absolute;
    bottom: 115px;
    right: -15px;
    float: right;
    background-color: #fa8a1e;
    border: none;
    outline: none;
    border-radius: 200px;
    color: #ffffff;
    padding: 4px 10px;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.slidebar ul {
    list-style: none;
    padding: 0;
}

.main {
    flex: 1;
    padding: 20px;
}

.dashboardlayouttextrow {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.dashboardlayouttextcol {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 10px;
}

.dashboardlayouttextcol:hover {
    transform: translateY(-10px);
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #fa830f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.welcome {
    font-size: 18px;
    color: #2c3e50;
}

.textorange {
    color: #e67e22;
}

.emailtext,
.phonetext {
    color: #7f8c8d;
    font-size: 14px;
    margin: 5px 0;
}


.dashboardlayouttextcol12 {
    flex: 0 0 auto;
    width: 100%;
}

.social-link {
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link i {
    font-size: 20px;
    color: #555;
    transition: color 0.3s;
}

.social-link a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social-link a:hover {
    color: #fa830f;
}

.social-link:hover i {
    color: #fa830f;
}

.popup-content {
    background: white;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

#batchDetails {
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.popup-content textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    resize: none;
    margin-top: 10px;
    transition: border 0.3s;
}

.popup-content textarea:focus {
    border-color: #4285F4;
    outline: none;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-btn:hover {
    color: black;
}

.btn-countdown {
    display: inline-block;
    width: -webkit-fill-available;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 0.9em;
    margin-top: 10px;
}

.btn-countdown:hover {
    background-color: #0056b3;
}

.course-image {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 200px;
    box-shadow: 0 0 7px #000;
    margin-top: -50px;
}

.viewBatchContent {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.viewBatchContent:hover {
    background-color: #0056b3;
}

.custom-file-upload {
    display: block;
    width: 150px;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 50%;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.3s;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.custom-file-upload:hover {
    border-color: #4285F4;
}

.custom-file-upload input[type="file"] {
    display: none;
}

.upload-icon {
    font-size: 50px;
    color: #ccc;
    margin-top: 0;
}

.upload-text {
    color: #777;
    font-size: 14px;
    margin-top: 10px;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}