body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e0e0e0;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}


header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #4a9bff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

nav {
    background: #1e1e1e;
    color: white;
    padding: 15px;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(74, 155, 255, 0.3);
    font-size: 0.9rem;
    opacity: 0.8;
}
nav a {
    color: #00c8ff;
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
nav a:hover {
    background: rgba(0, 200, 255, 0.2);
    transform: translateY(-2px);
}
main {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    margin: 20px;
    padding: 25px;
    border-radius: 8px;
}

.file {
    margin-bottom: 15px;
}

.delete-btn {
    background-color: #c0392b;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.delete-btn:hover {
    background-color: #e74c3c;
}

/* Getting Started Page Styles */
.getting-started-container {
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
  background: linear-gradient(to right, #007BFF, #00C6FF);
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #fff;
  color: #007BFF;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn-secondary {
  background-color: #007BFF;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  margin-left: 15px;
}

.benefits-section {
  background-color: #f8f9fa;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-section {
  background-color: white;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.order-steps {
  list-style-type: none;
  padding-left: 0;
}

.order-steps li {
  margin-bottom: 20px;
}

.setup-section {
  background-color: #f1f1f1;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.setup-steps {
  list-style-type: none;
  padding-left: 0;
}

.setup-steps li {
  margin-bottom: 15px;
}

.support-section {
  background-color: white;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.support-info {
  list-style-type: none;
  padding-left: 0;
}

.support-info li {
  margin-bottom: 15px;
}

.cta-section {
  background: linear-gradient(to right, #00C6FF, #007BFF);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-buttons {
  margin-top: 30px;
}
