/* Modern app-like styles */
body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f0f2f5;
}

.container {
    max-width: 600px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

button, input[type="file"], input[type="text"], input[type="password"], textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 9999px;
    font-size: 16px;
    transition: all 0.3s ease;
}

button {
    font-weight: 700;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

#jobDescription {
    resize: vertical;
    border-radius: 20px;
}

/* Side menu styles */
#sideMenu {
    transition: transform 0.3s ease-in-out;
}

#sideMenu.translate-x-full {
    transform: translateX(100%);
}

/* Modal styles */
.fixed {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Modern card styles */
.bg-white {
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Modern input styles */
input[type="text"], input[type="password"], textarea, select {
    border: 2px solid #e2e8f0;
    padding: 12px 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    border-color: #667eea;
    outline: none;
}

/* Gradient backgrounds */
.bg-gradient-to-r {
    background-size: 200% auto;
    transition: background-position 0.3s ease;
}

.bg-gradient-to-r:hover {
    background-position: right center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Footer styles */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #f0f2f5;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    footer {
        position: static;
        margin-top: 20px;
    }
}

#asciiRobot {
    font-family: monospace;
    white-space: pre;
    display: inline-block;
    vertical-align: middle;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
