/* Global Font */
body {
    font-family: 'Cairo', sans-serif !important;
    background-color: #A18D6D !important;
    /* User requested specific color */
    color: #495057;
}

/* Titles & Headers */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-weight: 700 !important;
}

/* Navbar Customization */
.navbar,
.navbar.bg-primary {
    background-color: #703B3B !important;
    /* User requested specific navbar color */
}

/* Cards - Premium Floating Effect */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #E1D0B3 !important;
    /* User requested specific card color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #E1D0B3 !important;
    /* Match card background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separator */
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem 1rem 0 0 !important;
    color: #343a40;
}

.card-body {
    padding: 1.5rem;
}

/* Modern Input Fields */
.form-control,
.form-select,
textarea.form-control {
    background-color: #f0f2f5 !important;
    /* Soft gray */
    border: 1px solid transparent;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    background-color: #ffffff !important;
    border-color: #80bdff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    /* Soft glow */
}

/* Floating Labels Fix (if used) or just Label Styling */
label.form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
    margin-right: 0.2rem;
}

/* Buttons - Modern & Soft */
.btn {
    border-radius: 0.5rem;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5c636a;
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}

/* Alert Styling */
.alert {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Copyright Footer */
.instascript-copyright {
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    font-size: 0.9rem;
    color: #6c757d;
}

.instascript-copyright a {
    color: #0d6efd;
    transition: color 0.2s;
}

.instascript-copyright a:hover {
    color: #0a58ca;
    text-decoration: underline !important;
}