body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    background-color: #00457C;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header .logo img {
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.nav a {
    text-decoration: none;
    color: #fff; 
    margin-right: 15px;
    font-weight: 600; 
}

.nav .divider {
    margin: 0 10px;
    color: #fff; 
}

.user-info {
    font-weight: 600;
    color: #fff; 
    background-color: #0d5a9d; 
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-info .fas {
    font-size: 14px;
    color: #fff;
}

.content {
    position: relative;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('arkaplan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.background-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.search-section {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 5;
    margin-top: 50px;
}

.search-section h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-box {
    width: 600px;
    max-width: 90%;
    margin: 0 auto 20px;
    position: relative; 
    z-index: 100;       
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.search-input::placeholder {
    color: #c0c0c0;
    opacity: 1;
}

.search-container {
  position: relative;
  width: 100%;
}

#suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 5px 5px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: none;
  z-index: 9999;
}

#suggestions li {
  padding: 12px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  text-align: left;
}

#suggestions li:hover {
  background: #f0f0f0;
}

.button-section-wrapper {
    margin-top: -30px;
    position: relative;
    z-index: 2; 
    box-shadow: none; 
}

.button-section {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px 40px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn .fas {
    font-size: 1.2rem;
}

.request-btn {
    background-color: #49B9E7;
}

.request-btn:hover {
    background-color: #3ca2d1;
}

.problem-btn {
    background-color: #8DD957;
}

.problem-btn:hover {
    background-color: #79c34d;
}

.records-btn {
    background-color: #FD5D5D;
}

.records-btn:hover {
    background-color: #e04a4a;
}

.announcements-section {
    padding: 40px;
    text-align: left;
    background-color: #fff;
    margin-top: 0;
    border-top: none;
}

.announcements-section h2 {
    font-size: 1.3rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: 300px; 
}

.announcement-list p {
    margin: 5px 0;
    color: #000; 
    font-size: 0.9rem;
    margin-left: 300px; 
}
