/* Place the import at the top of the file */
@import '/static/styles.css';

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

body {
    font-family: 'LCARS', sans-serif;
}

a {
    text-decoration: none;
    color: #fc6;
}

.lcars-button {
    padding: 1rem 2rem;
    border-radius: 24px;
    background-color: #fc6;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lcars-button:hover {
    background-color: #f93;
    transform: translateY(-5px);
}

.lcars-button:active {
    transform: translateY(0);
}

/* Smooth Fade-In Effect for Elements */
.lcars-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Loading Spinner Animation */
.lcars-loading {
    width: 50px;
    height: 50px;
    border: 6px solid #fc6;
    border-top: 6px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

* {
    box-sizing: border-box;
}

button {
    background-color: #fc6;
    color: #000;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #f93;
}
/* Global LCARS styling */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'LCARS', sans-serif;
  }
  
  a {
    color: #fc6;
    text-decoration: none;
  }
  
  a:hover {
    color: #f93;
  }
  
  .lcars-container {
    padding: 2rem;
    background-color: #000;
    color: #fff;
  }
  
input {
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid #fc6;
    background-color: #234;
    color: #fc6;
}
  