body{
    background: #ffffff;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    margin: 0;
    padding: 0;
    color: #1a202c;
    line-height: 1.5;
    font-size: 15px;
}

.header {
  background: #ffffff;
  padding: 12px 20px;
  border-bottom: 1px solid #e2e8f0;
  margin: 0;
  max-width: none;
  border-radius: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-items-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  gap: 20px;
}

.header-logo {
  flex: 0 0 auto;
}

.header-logo img {
  height: 28px;
  opacity: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  padding: 0;
  border: none;
}

.header-item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.header-item-wrapper a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  transition: color 0.15s ease;
}

.header-item-wrapper:hover a {
  color: #2d3748;
}

.header-item-wrapper.active a {
  color: #3182ce;
  font-weight: 600;
}

.header-item-wrapper a i {
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.header-item-wrapper a span {
  font-size: 14px;
}
.content-container{
    margin: 16px auto;
    max-width: 1140px;
    padding: 0 20px;
}

.news-section-container {
    background: #ffffff;
    padding: 16px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.footer-container{
    background: #f7fafc;
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    margin: 20px 0 0 0;
    text-align: center;
    color: #718096;
}

.footer-link{
    margin: 0 8px;
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    color: #2c5282;
    text-decoration: underline;
}

.content-container img{
    max-width:100% !important;
}



.error-message {
    margin-top: 5px;
    margin-left: 5px;
    color: #ff0000;
    height: 0;
    overflow: hidden;
    transition:  height 0.5s;
}
.form-group.has-error .error-message{
    height: 25px;
}

/* Modal Styles - Clean & Simple */
.status-modal-header {
    background: #e53e3e;
    text-align: center;
    padding: 20px;
    display: block;
    border-radius: 8px 8px 0 0;
}

#success-modal .status-modal-header{
    background: #38a169;
}

.status-message-icon {
    font-size: 40px;
    color: #fff;
    width: 56px;
    height: 56px;
    text-align: center;
    margin: 0 auto;
    line-height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

#success-modal .status-message-icon{
    font-size: 28px;
    line-height: 56px;
}

.status-message-content {
    text-align: center;
    padding: 20px;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

#error-modal .status-message-content{
    color: #e53e3e;
}

.status-message-btn{
    width: 120px;
    text-align: center;
    display: block;
    margin: 0 auto 16px;
    background: #3182ce;
    color: #fff;
    font-size: 13px;
    border-radius: 6px;
    padding: 8px 16px;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.status-message-btn:hover {
    background: #2c5282;
}

.modal-content {
    border-radius: 8px;
    border: none;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header {
    padding: 10px 16px;
  }
  
  .header-items-container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .header-nav {
    width: 100%;
    justify-content: space-around;
  }
  
  .header-item-wrapper a {
    padding: 10px 8px;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    font-size: 11px;
  }
  
  .header-item-wrapper a i {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .header-item-wrapper a span {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .content-container {
    margin: 12px auto;
    padding: 0 16px;
  }
  
  .news-section-container {
    margin: 8px 0;
    padding: 12px;
  }
  
  .footer-container {
    padding: 12px;
    margin: 16px 0 0 0;
  }
  
  .footer-link {
    margin: 6px;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 8px 12px;
  }
  
  .header-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }
  
  .header-item-wrapper {
    flex: 0 0 auto;
    min-width: 60px;
  }
  
  .header-item-wrapper a {
    padding: 8px 4px;
  }
  
  .header-item-wrapper a i {
    font-size: 14px;
  }
  
  .header-item-wrapper a span {
    font-size: 9px;
  }
  
  .content-container {
    padding: 0 12px;
  }
  
  .status-message-content {
    padding: 16px 12px;
    font-size: 13px;
  }
  
  .status-message-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 32px;
  }
  
  #success-modal .status-message-icon {
    font-size: 24px;
    line-height: 48px;
  }
}