/* Minimal shared styles */
body { 
  font-family: 'Roboto', sans-serif; 
  background-color: #f9fafb; 
  color: #222; 
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header styles */
.header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-text {
  display: flex;
  flex-direction: column;
}

.header h1 {
  color: white;
  margin: 0;
  font-size: 1.8em;
  font-weight: 700;
}

.header h3 {
  color: white;
  margin: 5px 0 0 0;
  font-size: 1em;
  font-weight: 400;
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section styles */
.section {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.section h2 {
  color: #1f6feb;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: 700;
  border-bottom: 2px solid #1f6feb;
  padding-bottom: 8px;
}

.section-description {
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-left: 3px solid #1f6feb;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Links grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.link-card {
  display: block;
  padding: 12px 15px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
  font-size: 0.9em;
}

.link-card:hover {
  background: #1f6feb;
  color: white;
  border-color: #1f6feb;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(31, 111, 235, 0.3);
}

.link-card.important {
  background: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

.link-card.important:hover {
  background: #ffc107;
  color: #212529;
  border-color: #ffc107;
}

/* Email Services Grid */
.email-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.email-service-card {
  background: #f8f9fa;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.email-service-card:hover {
  border-color: #1f6feb;
  box-shadow: 0 2px 8px rgba(31, 111, 235, 0.2);
  transform: translateY(-1px);
}

.email-service-link {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #333;
  height: 100%;
  box-sizing: border-box;
}

.service-icon {
  font-size: 2em;
  text-align: center;
  margin-bottom: 10px;
}

.service-title {
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #1f6feb;
}

.service-description {
  font-size: 0.85em;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

.email-service-link:hover .service-title {
  color: #1558b0;
}

.email-service-link:hover .service-description {
  color: #555;
}

/* Legacy styles for other pages */
h1, h2, h3 { color: #1f6feb; margin-top: 0.6em; }
p { color: #333; }
button { background:#1f6feb; color:white; border:none; padding:8px 12px; border-radius:4px; cursor:pointer; }
button:hover { background:#1558b0; }
input[type="text"], textarea, select { border:1px solid #d0d7de; padding:6px 8px; border-radius:4px; }
table { border-collapse: collapse; }
th { background:#eef2ff; }
td, th { border:1px solid #e5e7eb; padding:6px 8px; }

