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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: #1a202c;
  overflow-x: hidden;
  position: relative;
}
/* ================= School Logo ================= */
.school-logo-container {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    text-align: center;
    z-index: 1001;
    animation: iconFloat 3s ease-in-out infinite;
}

.school-logo {
    width: 70px;          /* SAME SIZE as teacher icon */
    height: 70px;         
    border-radius: 50%;   /* perfect circle */
    background: white;    
    padding: 6px;         /* white inner border */
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);  /* same shadow as teacher icon */
    object-fit: cover;    /* image fills circle */
    border: 3px solid #667eea; /* same border as teacher icon */
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

/* Add the same hover animation as teacher icon */
.school-logo-container:hover .school-logo {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    animation: none;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

/* Pulse animation like teacher icon */
@keyframes pulseRing {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(102, 126, 234, 0);
    }
}

/* Add label for school logo (optional) */
.school-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: black;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    animation: fadeIn 1s ease 0.5s backwards;
}

/* Optional: Add hover label for school logo */
.school-logo-container:hover .school-label {
    color: #667eea;
}

/* ================= Responsive Adjustments ================= */
@media (max-width: 768px) {
    .school-logo-container {
        top: 0.8rem;
        left: 0.8rem;
    }
    
    .school-logo {
        width: 60px;
        height: 60px;
    }
    
    .school-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .school-logo {
        width: 55px;
        height: 55px;
    }
    
    .school-label {
        font-size: 0.6rem;
    }
}

/* Adjust the fixed-header position to accommodate both icons */
@media (min-width: 769px) {
    .fixed-header {
        padding-left: 100px; /* Add space for logo */
        padding-right: 100px; /* Add space for teacher icon */
    }
}

/* ================= Animated Background ================= */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 138, 101, 0.3), transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(138, 180, 248, 0.3), transparent 50%);
  animation: backgroundShift 15s ease infinite;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
  animation: gridMove 20s linear infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes backgroundShift {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* ================= Header ================= */
.fixed-header {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 1000;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.2);
  animation: headerSlideDown 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s ease;
}

.fixed-header:hover {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@keyframes headerSlideDown {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* ====================== Top Navigation ====================== */
.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 100px auto 40px;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: fit-content;
  backdrop-filter: blur(40px);
  transition: all 0.3s ease;
}

.top-nav a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.top-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.top-nav a:hover {
  color: #667eea;
}

.top-nav a:hover::after {
  width: 80%;
}


/* ================= Teacher Portal ================= */
.teacher-portal-icon {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  text-align: center;
  z-index: 1001;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.teacher-icon-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 3px solid #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  position: relative;
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(102, 126, 234, 0);
  }
}

.teacher-icon-btn svg {
  width: 34px;
  height: 34px;
  fill: #667eea;
  transition: all 0.3s ease;
}

.teacher-icon-btn:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
  animation: none;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.teacher-icon-btn:hover svg {
  transform: scale(1.2);
  fill: #764ba2;
  animation: wiggle 0.5s ease;
}

.teacher-icon-btn:active {
  transform: scale(1.05);
}

@keyframes wiggle {
  0%, 100% { transform: scale(1.2) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-10deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
}

/* Teacher label below the icon */
.teacher-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: black;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  animation: fadeIn 1s ease 0.5s backwards;
}

/* ================= Welcome Section ================= */
.welcome-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 50px 40px 40px 40px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-container h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: textShimmer 3s ease-in-out infinite, slideInScale 0.8s ease;
}

@keyframes textShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

@keyframes slideInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.welcome-container p {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  margin-bottom: 3rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeIn 1.2s ease 0.3s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ================= Buttons ================= */
.button-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 800px;
  animation: fadeIn 1.4s ease 0.6s backwards;
}

.class-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 18px 28px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: block;
}

.class-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.class-button::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.class-button:hover::before {
  width: 400px;
  height: 400px;
}

.class-button:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.class-button:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #764ba2;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(118, 75, 162, 0.5);
}

.class-button:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ================= Class View ================= */
#classView {
  display: none;
  padding: 120px 2rem 2rem 2rem;
  color: white;
  min-height: 100vh;
}

#classView.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}

#classView h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInScale 0.6s ease;
}

.back-button {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.back-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.back-button:hover::before {
  left: 100%;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #764ba2;
  transform: translateX(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ================= Password Modal Styles ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: rgba(255, 255, 255, 0.98);
  margin: 10% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(20px);
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  animation: shimmer 2s ease infinite;
}

@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.modal-header {
  padding: 25px 20px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.modal-header h2 {
  margin: 0;
  color: #667eea;
  font-size: 1.6rem;
  font-weight: 700;
  animation: fadeIn 0.5s ease 0.2s backwards;
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #667eea;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(118, 75, 162, 0.1);
  color: #764ba2;
  transform: rotate(90deg);
}

.input-group {
  padding: 25px;
  animation: fadeIn 0.6s ease 0.3s backwards;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  color: #1a202c;
  font-weight: 600;
  font-size: 1rem;
}

.input-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.input-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.modal-buttons {
  display: flex;
  gap: 12px;
  padding: 0 25px 25px;
  justify-content: center;
  animation: fadeIn 0.7s ease 0.4s backwards;
}

.confirm-btn, .cancel-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 160px;
  position: relative;
  overflow: hidden;
}

.confirm-btn::before, .cancel-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.confirm-btn:hover::before, .cancel-btn:hover::before {
  width: 300px;
  height: 300px;
}

.confirm-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.confirm-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
}

.cancel-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.password-message {
  text-align: center;
  padding: 10px 20px 0;
  font-size: 0.95rem;
  min-height: 20px;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

.password-message.error {
  color: #e53e3e;
  animation: shake 0.5s ease;
}

.password-message.success {
  color: #38a169;
  animation: successPulse 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ================= Loading Animation ================= */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .fixed-header {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    top: 1.5rem;
  }

  .teacher-portal-icon {
    top: 0.8rem;
    right: 0.8rem;
  }

  .teacher-icon-btn {
    width: 60px;
    height: 60px;
  }

  .teacher-icon-btn svg {
    width: 28px;
    height: 28px;
  }

  .teacher-label {
    font-size: 0.65rem;
  }

  .welcome-container {
    padding: 100px 20px 40px 20px;
  }

  .button-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .class-button {
    padding: 16px 24px;
  }

  .modal-content {
    margin: 20% auto;
    width: 95%;
  }
  
  .modal-buttons {
    flex-direction: column;
  }

  .confirm-btn, .cancel-btn {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .welcome-container h1 {
    font-size: 2rem;
  }

  .welcome-container p {
    font-size: 1rem;
  }

  .teacher-icon-btn {
    width: 55px;
    height: 55px;
  }

  .teacher-icon-btn svg {
    width: 26px;
    height: 26px;
  }

  .teacher-label {
    font-size: 0.6rem;
  }

  .fixed-header {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .class-button {
    font-size: 1rem;
    padding: 14px 20px;
  }
}

/* ================= Accessibility & Performance ================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================= Selection Styling ================= */
::selection {
  background: rgba(118, 75, 162, 0.3);
  color: white;
}

::-moz-selection {
  background: rgba(118, 75, 162, 0.3);
  color: white;
}

/* ================= Scrollbar Styling ================= */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}




/* ================= Teachers Dashboard Button ================= */
.teachers-dashboard-section {
  margin-top: 3rem;
  animation: fadeInUp 1s ease 0.8s backwards;
}

.teachers-dashboard-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #764ba2;
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(102, 126, 234, 0.2);
  border: 3px solid rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.teachers-dashboard-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(102, 126, 234, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.teachers-dashboard-button:hover::before {
  left: 100%;
}

.teachers-dashboard-button:hover {
  transform: translateY(-5px) scale(1.05);
  background: white;
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.4),
    0 0 0 3px rgba(102, 126, 234, 0.2);
  color: #667eea;
}

.teachers-dashboard-button:active {
  transform: translateY(-2px) scale(1.02);
}

.dashboard-icon {
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.dashboard-text {
  transition: all 0.3s ease;
}

.dashboard-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.teachers-dashboard-button:hover .dashboard-arrow {
  opacity: 1;
  transform: translateX(0);
}

.teachers-dashboard-button:hover .dashboard-icon {
  transform: scale(1.2) rotate(10deg);
}

/* ================= Responsive Design ================= */
@media (max-width: 768px) {
  .teachers-dashboard-button {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .dashboard-icon {
    font-size: 1.5rem;
  }
  
  .dashboard-arrow {
    display: none;
  }
}
/* Footer */
.site-footer {
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
    font-size: 15px;
    color: #555;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    width: 100%;
}
