
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f6f8;
}
header {
  background: #0b3c5d;
  color: white;
  padding: 20px;
  text-align: center;
}
nav {
  background: #062f4f;
  padding: 10px;
  text-align: center;
}
nav button {
  margin: 0 5px;
  padding: 8px 15px;
  border: none;
  background: #ffffff;
  cursor: pointer;
  font-weight: bold;
}
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
article {
  background: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
}
footer {
  background: #062f4f;
  color: white;
  text-align: center;
  padding: 10px;
}
.hidden {
  display: none;
}
.badge {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}


/* Remove bullet points and style the container */
.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 15px;
}

/* Base style for all links */
.social-links a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: opacity 0.3s;
  color: white; /* Text color for all buttons */
}

.social-links a:hover {
  opacity: 0.8;
}

/* Specific colors for your platforms */
/* Add this to the "Specific colors for your platforms" section in style.css */
.facebook {
  background-color: #1877f2; /* Official Facebook Blue */
}

.youtube {
  background-color: #FF0000;
}

.telegram {
  background-color: #0088cc;
}

.email {
  background-color: #0b3c5d; /* Matches your header color */
}

/* Space between the icon and the text */
.social-links i {
  margin-right: 10px;
}

/* Ensure the admin table has some height */
#data-table {
    background-color: white;
    margin-top: 20px;
    border: 1px solid #ccc;
}
/* Card Layout for Home Page */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-top: 4px solid #0b3c5d;
}

/* Blog Styling */
.blog-post {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.post-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}
.blog-post h3 {
  margin: 5px 0;
  color: #0b3c5d;
}

/* Add to style.css */
#maintenance-history-table {
    background-color: #ffffff;
    border: 1px solid #062f4f;
    margin-top: 10px;
}

#history-header {
    color: #0b3c5d;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px dashed #ccc;
}

/* Card Layout for Home Page */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-top: 4px solid #0b3c5d;
}

/* Admin History Styles */
#maintenance-history-table {
    background-color: #ffffff;
    border: 1px solid #062f4f;
    margin-top: 10px;
}
#history-header {
    color: #0b3c5d;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px dashed #ccc;
}