* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =================================== */
/* MODERN DESKTOP THEME */
/* =================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #333;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.mobile-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    padding-bottom: 0;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow-x: hidden;
}

.app-header {
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.7) 0%, rgba(31, 31, 31, 0.8) 100%), url('../images/dallas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
    color: white;
    padding: 35px 40px 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 20px 20px 0 0;
    border: 2px solid rgba(255,255,255,0.1);
    border-bottom: 3px solid rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
}

/* Logo Styling */
.app-logo {
    height: 180px;
    width: 180px;
    margin-right: 25px;
    filter:
        drop-shadow(4px 4px 8px rgba(0,0,0,0.8))
        drop-shadow(0 0 15px rgba(255,255,255,0.2))
        contrast(1.1)
        brightness(1.05);
    background: none;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.app-logo:hover {
    filter:
        drop-shadow(6px 6px 12px rgba(0,0,0,0.9))
        drop-shadow(0 0 20px rgba(255,255,255,0.3))
        contrast(1.15)
        brightness(1.1);
    transform: scale(1.02);
}

.header-brand {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.header-brand:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    transform: translateY(-1px);
    box-shadow:
        0 6px 25px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.app-header h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow:
        3px 3px 6px rgba(0,0,0,0.9),
        0 0 20px rgba(255,255,255,0.1),
        1px 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    font-family: 'Arial Black', Arial, sans-serif;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-settings {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow:
        0 4px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-settings:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.4);
}

.btn-logout {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(220,53,69,0.8) 0%, rgba(155,39,58,0.9) 100%);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow:
        0 4px 15px rgba(220,53,69,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-logout:hover {
    background: linear-gradient(135deg, rgba(220,53,69,0.9) 0%, rgba(155,39,58,1) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(220,53,69,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.3);
}

.login-prompt {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8edff 100%);
}

.login-prompt h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    letter-spacing: -0.02em;
}

.login-prompt p {
    font-size: 20px;
    color: #718096;
    margin-bottom: 40px;
}

.stats-section {
    padding: 40px;
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    color: white;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4a4a4a;
}

.action-btn.primary {
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    color: white;
    border-color: transparent;
}

.action-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.action-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.action-btn span:last-child {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.recent-section, .recent-posts {
    padding: 40px;
    background: #f8f9ff;
}

.recent-section h3, .recent-posts h3 {
    margin-bottom: 25px;
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.item-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.item-details {
    flex: 1;
}

.item-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
    color: #2d3748;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.item-price {
    color: #4a4a4a;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.item-actions {
    display: flex;
    gap: 10px;
}

.item-actions .action-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.item-actions .action-btn:hover {
    transform: translateY(-2px);
}

.item-actions .action-btn.edit { background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%); color: #d4b896; }
.item-actions .action-btn.view { background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%); color: #d4b896; }
.item-actions .action-btn.duplicate { background: linear-gradient(135deg, #5a5a5a 0%, #3c3c3c 100%); color: #d4b896; }
.item-actions .action-btn.delete { background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%); color: white; }

.bottom-nav {
    display: none;
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: #718096;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 5px;
}

.nav-item:hover {
    background: rgba(74, 74, 74, 0.1);
    color: #4a4a4a;
}

.nav-item.active {
    color: #4a4a4a;
    background: rgba(74, 74, 74, 0.1);
}

.nav-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.nav-item span:last-child {
    font-size: 14px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #4a4a4a;
    box-shadow: 0 0 0 3px rgba(74, 74, 74, 0.1);
}

.btn-post {
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 100;
}

.btn-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    margin: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: white;
    color: #4a4a4a;
    border: 2px solid #4a4a4a;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: #4a4a4a;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Desktop Form Elements */
.quick-post-form {
    padding: 40px;
    background: #f8f9ff;
}

.form-section {
    margin-bottom: 30px;
}

.photo-upload-section {
    margin-bottom: 30px;
}

.photo-upload-box {
    display: block;
    border: 3px dashed #c7d2fe;
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8edff 100%);
}

.photo-upload-box:hover {
    border-color: #4a4a4a;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}

.upload-placeholder .camera-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
}

.upload-placeholder p {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.upload-placeholder small {
    color: #718096;
    font-size: 16px;
}

.price-input-group {
    position: relative;
}

.currency {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    z-index: 1;
}

.price-input-group .form-input {
    padding-left: 50px;
}

/* Status Toggle Styles */
.status-toggle-section {
    margin: 30px 0;
}

.status-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.status-option {
    cursor: pointer;
}

.status-option input {
    display: none;
}

.status-card {
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    border: 2px solid #4a4a4a;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    color: #d4b896;
}

.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.status-option input:checked + .status-card {
    border-color: #d4b896;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.3);
}

.status-card.active {
    border-color: #28a745;
}

.status-option input:checked + .status-card.active {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

.status-card.draft {
    border-color: #ffc107;
}

.status-option input:checked + .status-card.draft {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

.status-card.archived {
    border-color: #dc3545;
}

.status-option input:checked + .status-card.archived {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
}

.status-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.status-card span:not(.status-icon) {
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.status-card small {
    color: #999;
    font-size: 12px;
    display: block;
}

.platform-selection {
    margin: 40px 0;
}

.platform-selection h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.platform-option {
    cursor: pointer;
}

.platform-option input {
    display: none;
}

.platform-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.platform-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.platform-option input:checked + .platform-card {
    border-color: #4a4a4a;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.platform-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.platform-card span:last-child {
    font-weight: 600;
    color: #2d3748;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.templates-section {
    margin: 30px 0;
}

.templates-section select {
    background: white;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.btn-back {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

/* Inventory Page Styles */
.search-section {
    padding: 20px;
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    box-sizing: border-box;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #4a4a4a;
    border-radius: 12px;
    font-size: 16px;
    background: #2c2c2c;
    color: #d4b896;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #d4b896;
    box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.2);
}

.search-btn {
    background: linear-gradient(135deg, #d4b896 0%, #b8a082 100%);
    color: #2c2c2c;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.filter-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #4a4a4a;
    border-radius: 10px;
    background: #2c2c2c;
    color: #d4b896;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-select:focus {
    outline: none;
    border-color: #d4b896;
    box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.2);
}

.inventory-section {
    padding: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.inventory-list {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.inventory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.item-count {
    color: #d4b896;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.inventory-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-size: 18px;
    grid-column: 1 / -1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.load-more {
    text-align: center;
    padding: 20px;
}

/* Inventory Item Styles */
.inventory-item {
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
    border: 1px solid #4a4a4a;
    border-radius: 15px;
    padding: 15px;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.inventory-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.inventory-item .item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #2c2c2c;
    border: 2px solid #4a4a4a;
}

.inventory-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inventory-item .item-details {
    min-width: 0;
    overflow: hidden;
    width: 100%;
}

.inventory-item .item-title {
    font-size: 18px;
    font-weight: 700;
    color: #d4b896;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inventory-item .item-price {
    font-size: 20px;
    font-weight: 700;
    color: #d4b896;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.item-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.item-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: none;
    display: inline-block;
    white-space: nowrap;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-draft {
    background: #fff3cd;
    color: #856404;
}

.status-sold {
    background: #cce5ff;
    color: #0056b3;
}

.status-archived {
    background: #f8d7da;
    color: #721c24;
}

.item-category {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
}

.item-platforms {
    display: flex;
    gap: 5px;
}

.platform-badge {
    font-size: 14px;
    padding: 2px 6px;
    background: rgba(74, 74, 74, 0.1);
    border-radius: 8px;
}

.inventory-item .item-actions {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    white-space: nowrap;
    overflow: visible;
}

.inventory-item .action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: #d4b896;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    flex-shrink: 0;
    min-width: 32px;
}

.inventory-item .action-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #5a5a5a 0%, #3c3c3c 100%);
}

.inventory-item .action-btn.toggle {
    border: 2px solid transparent;
}

.inventory-item .action-btn.toggle.status-active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
}

.inventory-item .action-btn.toggle.status-draft {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border-color: #ffc107;
}

.inventory-item .action-btn.toggle.status-archived {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    border-color: #dc3545;
}

.inventory-item .action-btn.toggle:hover {
    transform: translateY(-2px) scale(1.1);
    opacity: 0.8;
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-items h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.no-items p {
    font-size: 16px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #dc3545;
    font-size: 18px;
    font-weight: 600;
    background: #f8d7da;
    border-radius: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
    background: #2a2a2a;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #555;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .bottom-nav {
        display: flex;
        position: static;
        background: white;
        border-top: 1px solid #e2e8f0;
        padding: 20px 40px;
        justify-content: center;
        max-width: none;
        margin: 0;
    }

    .nav-item {
        max-width: 150px;
    }

    .search-section {
        padding: 30px 40px;
    }

    .filter-row {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .filter-select {
        min-width: 200px;
        flex: 1;
    }

    .inventory-item .item-actions {
        flex-direction: row;
        gap: 10px;
    }
}

/* =================================== */
/* AUTH FORM STYLING */
/* =================================== */
.auth-form {
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border 0.3s;
    box-sizing: border-box;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.auth-links a {
    color: #667eea;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.message {
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    font-weight: bold;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =================================== */
/* SMALL SCREEN STYLES */
/* =================================== */
@media screen and (max-width: 480px) {
    .mobile-container {
        margin: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }

    .app-header {
        border-radius: 0;
        padding: 8px 12px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
        flex-wrap: nowrap;
        background: linear-gradient(135deg, rgba(58, 58, 58, 0.95) 0%, rgba(31, 31, 31, 0.95) 100%), url('../images/dallas.png');
        background-size: cover;
        background-position: center;
    }

    .app-logo {
        height: 40px !important;
        width: 40px !important;
        margin-right: 8px !important;
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8)) !important;
    }

    .app-header h1 {
        font-size: 14px !important;
        margin: 0 !important;
        line-height: 1.2;
        font-weight: 700 !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.9) !important;
    }

    .mobile-container .app-header .header-brand {
        padding: 0 !important;
        margin: 0 !important;
        flex: 1;
        min-width: 0;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .mobile-container .app-header .header-brand:hover {
        background: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }

    /* Force remove glass effect on mobile */
    @media screen and (max-width: 480px) {
        .header-brand {
            background: transparent !important;
            backdrop-filter: none !important;
            border: 0 !important;
            box-shadow: none !important;
            border-radius: 0 !important;
        }
    }

    .header-actions {
        flex-direction: row !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        flex-shrink: 0;
    }

    .btn-settings, .btn-logout {
        padding: 6px 8px !important;
        font-size: 10px !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
        min-width: auto !important;
        font-weight: 600 !important;
    }

    .inventory-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 12px;
        gap: 12px;
        text-align: center;
        max-width: 100%;
        margin: 0 5px;
        width: calc(100% - 10px);
        box-sizing: border-box;
        overflow: hidden;
    }

    .inventory-item .item-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .inventory-item .item-details {
        width: 100%;
        text-align: center;
    }

    .inventory-item .item-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        padding-top: 12px;
        border-top: 1px solid #4a4a4a;
    }

    .inventory-item .action-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .inventory-section {
        padding: 10px;
    }

    .search-section {
        margin: 10px;
        padding: 15px;
        width: calc(100% - 20px);
        max-width: 100%;
        box-sizing: border-box;
    }

    .filter-row {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .filter-select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        font-size: 16px;
        padding: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        border: 1px solid #ccc;
        border-radius: 8px;
    }

    /* Marketplace filter mobile styles */
    .marketplace-filters {
        margin: 10px;
        padding: 15px;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .marketplace-filters .filter-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .marketplace-filters .filter-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }

    .marketplace-filters select {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
        padding: 12px !important;
    }

    /* Hide welcome message on mobile */
    .welcome-message-desktop {
        display: none !important;
    }

    /* Ensure welcome message is completely hidden on mobile */
    div[style*="background: #f8f9fa"][style*="text-align: center"] {
        display: none !important;
    }

    /* Move items grid up by reducing margins */
    .marketplace-filters {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    /* Reduce spacing for items grid on mobile */
    #itemsGrid {
        margin: 10px !important;
        gap: 15px !important;
    }

    /* Reduce header padding on mobile */
    .app-header {
        padding: 15px 15px !important;
    }

    /* Mobile form improvements */
    .quick-post-form {
        padding: 15px !important;
        margin: 10px !important;
    }

    .form-input {
        padding: 15px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .btn-post {
        padding: 20px !important;
        font-size: 18px !important;
        margin-top: 20px !important;
        width: 100% !important;
        border-radius: 10px !important;
    }

    /* Mobile search bar fixes */
    .search-section {
        margin: 10px 5px !important;
        padding: 15px !important;
        border-radius: 10px !important;
    }

    .search-section > div {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .search-section input {
        flex: 1 !important;
        padding: 12px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    .search-section button {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* Mobile marketplace filters */
    .marketplace-filters {
        margin: 10px 5px !important;
        padding: 15px !important;
    }

    .filter-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .filter-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .filter-group label {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .filter-select {
        width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    /* Mobile items grid */
    #itemsGrid {
        margin: 10px 5px !important;
        gap: 15px !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }

    .search-bar {
        flex-direction: column;
        gap: 10px;
    }

    .search-btn {
        width: 100%;
    }
}

/* =================================== */
/* TABLET STYLES */
/* =================================== */
@media (max-width: 768px) and (min-width: 481px) {
    .inventory-item {
        grid-template-columns: 80px minmax(0, 1fr) 140px;
        gap: 10px;
        padding: 12px;
        max-width: 100%;
    }

    .inventory-item .item-actions {
        gap: 3px;
        width: 140px;
        min-width: 140px;
        max-width: 140px;
    }

    .inventory-item .action-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .inventory-section {
        padding: 15px;
    }

    .search-section {
        margin: 15px;
        padding: 18px;
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }

    .filter-row {
        gap: 12px;
    }

    .filter-select {
        font-size: 15px;
        padding: 14px 18px;
    }
}

/* Welcome Message Styles */
.welcome-message-desktop {
    background: #f8f9fa;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e1e5e9;
}

.welcome-message-desktop h2 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 24px;
}

.welcome-message-desktop p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

/* Marketplace Filter Styles */
.marketplace-filters {
    background: #f8f9fa;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    border: 1px solid #e1e5e9;
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group label {
    font-weight: 500;
    color: #4a5568;
    white-space: nowrap;
}

/* Override inline styles for marketplace filters */
.marketplace-filters select {
    padding: 10px 15px !important;
    border: 2px solid #e1e5e9 !important;
    border-radius: 8px !important;
    background: white !important;
    font-size: 14px !important;
    min-width: 150px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hide welcome message on mobile - broader range */
@media (max-width: 768px) {
    .welcome-message-desktop {
        display: none !important;
    }

    /* Target the specific welcome div with inline styles */
    div[style*="background: #f8f9fa"][style*="text-align: center"] {
        display: none !important;
    }

    /* More specific targeting for welcome message */
    .mobile-container > div[style*="background: #f8f9fa"] {
        display: none !important;
    }

    /* Target by content */
    div:has(h2:contains("Welcome to Moto Pappi")) {
        display: none !important;
    }
}

/* =================================== */
/* MOBILE THEME (Large Elderly-Friendly Design) */
/* =================================== */
@media (max-width: 1023px) {
    /* Inventory Item Mobile Styles */
    .inventory-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 15px;
        gap: 15px;
        text-align: center;
    }

    .inventory-item .item-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .inventory-item .item-details {
        width: 100%;
        text-align: center;
    }

    .inventory-item .item-title {
        white-space: normal;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .inventory-item .item-price {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .inventory-item .item-actions {
        width: 100%;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid #4a4a4a;
    }

    .inventory-item .action-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .inventory-list {
        padding: 10px;
        max-width: 100%;
    }

    .inventory-section {
        padding: 15px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .app-logo {
        height: 220px;
        width: 220px;
        margin-right: 30px;
    }
    body {
        font-family: 'MS Sans Serif', 'Segoe UI', Arial, sans-serif;
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        color: #fff;
        font-size: 48px;
        font-weight: bold;
        line-height: 2.0;
    }

    .mobile-container {
        max-width: 100%;
        background: linear-gradient(180deg, #3a3a3a 0%, #1f1f1f 100%);
        border: 4px solid #555;
        box-shadow: 0 0 20px rgba(0,0,0,0.4);
        padding-bottom: 200px;
    }

    .app-header {
        background: linear-gradient(135deg, rgba(58, 58, 58, 0.9) 0%, rgba(31, 31, 31, 0.9) 100%), url('../images/dallas.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 24px 32px;
        border-bottom: 2px solid #1f1f1f;
        font-weight: bold;
        box-shadow: inset 1px 1px 0 rgba(255,255,255,0.1), inset -1px -1px 0 rgba(0,0,0,0.5);
    }

    .app-header h1 {
        font-size: 64px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
        text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    }

    .btn-logout {
        color: #fff;
        padding: 32px 48px;
        background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
        border: 4px outset #555;
        font-weight: bold;
        font-size: 36px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        min-height: 100px;
        box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        border-radius: 0;
    }

    .form-input {
        padding: 40px;
        font-size: 48px;
        border: 4px inset #555;
        border-radius: 0;
        margin-bottom: 40px;
        background: #2a2a2a;
        color: #fff;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
        min-height: 120px;
    }

    .btn-post {
        padding: 48px;
        background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
        color: #fff;
        border: 4px outset #555;
        border-radius: 0;
        font-size: 48px;
        font-weight: bold;
        margin-top: 32px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        min-height: 140px;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        box-shadow: 4px 4px 8px rgba(0,0,0,0.4);
    }

    .bottom-nav {
        background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
        border-top: 4px outset #555;
        padding: 16px 0;
        min-height: 160px;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.5);
        max-width: 100%;
    }

    .nav-item {
        padding: 30px;
        color: #fff;
        min-height: 140px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
        font-size: 32px;
        border: 2px outset #555;
        margin: 6px;
        background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .nav-item.active {
        color: #fff;
        background: linear-gradient(180deg, #6a6a6a 0%, #4a4a4a 100%);
        border: 2px inset #6a6a6a;
        box-shadow: inset 2px 2px 4px rgba(0,0,0,0.4);
    }

    .nav-icon {
        font-size: 64px;
        margin-bottom: 12px;
    }

    .nav-item span:last-child {
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .item-card {
        background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
        border: 4px outset #c0c0c0;
        border-radius: 0;
        padding: 40px;
        gap: 32px;
        margin-bottom: 20px;
        min-height: 180px;
        box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
    }

    .item-title {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #000;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        text-transform: uppercase;
    }

    .item-price {
        color: #0078d4;
        font-weight: bold;
        font-size: 48px;
        margin-bottom: 12px;
        text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
    }

    .item-actions .action-btn {
        width: 80px;
        height: 80px;
        border: 3px outset #c0c0c0;
        border-radius: 0;
        font-size: 24px;
        font-weight: bold;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    .item-actions .action-btn.edit {
        background: linear-gradient(180deg, #4a4a4a 0%, #2c2c2c 100%);
        color: #d4b896;
    }
    .item-actions .action-btn.view {
        background: linear-gradient(180deg, #3a3a3a 0%, #1f1f1f 100%);
        color: #d4b896;
    }
    .item-actions .action-btn.duplicate {
        background: linear-gradient(180deg, #5a5a5a 0%, #3c3c3c 100%);
        color: #d4b896;
    }
    .item-actions .action-btn.delete {
        background: linear-gradient(180deg, #dc3545 0%, #b02a37 100%);
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    }

    .stat-number {
        font-size: 72px;
        font-weight: bold;
        margin-bottom: 16px;
        text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    }

    .stat-label {
        font-size: 32px;
        opacity: 0.9;
        font-weight: bold;
        text-transform: uppercase;
    }

    .stats-section {
        background: linear-gradient(180deg, #3a3a3a 0%, #1f1f1f 100%);
    }

    /* Make Total Sales box wider on mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr 2fr;
        gap: 16px;
    }

    .btn {
        padding: 36px 48px;
        margin: 16px;
        border-radius: 0;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
        border: 4px outset #c0c0c0;
        font-size: 36px;
        background: linear-gradient(180deg, #e0e0e0 0%, #c0c0c0 100%);
        color: #000;
        min-height: 120px;
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
    }

    .btn-primary {
        background: linear-gradient(180deg, #42A5F5 0%, #1976D2 100%);
        color: #fff;
        border: 4px outset #42A5F5;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .btn-secondary {
        background: linear-gradient(180deg, #e0e0e0 0%, #c0c0c0 100%);
        color: #000;
        border: 4px outset #e0e0e0;
    }

    /* Auth Forms Mobile Styling */
    .auth-form {
        padding: 40px;
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 40px;
    }

    .form-group label {
        font-size: 36px;
        margin-bottom: 16px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
        color: #000;
        text-transform: uppercase;
    }

    .auth-form input[type="text"],
    .auth-form input[type="email"],
    .auth-form input[type="password"] {
        padding: 40px;
        font-size: 48px;
        border: 4px inset #c0c0c0;
        border-radius: 0;
        background: #fff;
        color: #000;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
        min-height: 120px;
    }

    .auth-form input[type="text"]:focus,
    .auth-form input[type="email"]:focus,
    .auth-form input[type="password"]:focus {
        border: 4px inset #0078d4;
        background: #f0f8ff;
    }

    .btn-large {
        padding: 48px;
        font-size: 48px;
        min-height: 140px;
        margin-top: 32px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        border-radius: 0;
        border: 4px outset #4CAF50;
    }

    .auth-links {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 4px solid #c0c0c0;
    }

    .auth-links p {
        font-size: 32px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
    }

    .auth-links a {
        color: #0078d4;
        font-size: 36px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .message {
        padding: 30px;
        margin-top: 30px;
        border-radius: 0;
        font-size: 36px;
        font-family: 'MS Sans Serif', Arial, sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        border-width: 4px;
    }

    .message.success {
        background: linear-gradient(180deg, #90EE90 0%, #32CD32 100%);
        color: #000;
        border: 4px outset #90EE90;
    }

    .message.error {
        background: linear-gradient(180deg, #FFB6C1 0%, #FF69B4 100%);
        color: #000;
        border: 4px outset #FFB6C1;
    }
}