/* General Styles */
body {
    font-family: Roboto, sans-serif;
}

/* Login/regmonster Page Styles */
.card {
    border-radius: 10px;
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

/* Form Styles */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

/* Button Styles */
.btn {
    border-radius: 5px;
    font-weight: 500;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #1e7e34;
    border-color: #1c7430;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
}

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

/* Terminal Specific Styles */
.terminal-fullscreen {
    height: 100vh;
    overflow: hidden;
}

/* Activity Log Styles */
.activity-log {
    max-height: 70vh;
    overflow-y: auto;
}

/* Code and Command Styling */
code {
    color: #e83e8c;
    background-color: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 87.5%;
}

/* Utility Classes */
.text-monospace {
    font-family: 'Courier New', monospace !important;
}

.bg-dark-terminal {
    background-color: #1e1e1e !important;
}

.text-terminal {
    color: #ffffff !important;
}