/* css/styles.css */
/* This file contains all custom styles for the MyBid.Pro website. */

/* ADMIN ButtonFace
.admin-btn {
    background-color: #ff8200; /* Safety orange */
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}
.admin-btn:hover, .admin-btn:focus {
    background-color: #e66d00;
}
@media (max-width: 600px) {
    .card-header {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .admin-btn {
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 640px) {
    .flex.items-center.justify-between {
        flex-direction: column;
        align-items: flex-start;
    }
    .admin-btn {
        margin-left: 0 !important;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }
}



/* General Body & Typography */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #FFFFFF; /* Clean White */
    color: #1A1A1A; /* Matte Black */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #3B4C61; /* Steel Blue */
}

/* Utility Classes from Branding */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.bg-steel-blue { background-color: #3B4C61; }
.text-steel-blue { color: #3B4C61; }
.bg-safety-orange { background-color: #F96C00; }
.text-safety-orange { color: #F96C00; }
.bg-concrete-gray { background-color: #6D6D6D; }
.text-concrete-gray { color: #6D6D6D; }
.bg-matte-black { background-color: #1A1A1A; }
.text-matte-black { color: #1A1A1A; }
.border-safety-orange { border-color: #F96C00; }
.ring-safety-orange { ring-color: #F96C00; }

/* Page-specific styles */

/* Signup Page */
.body-signup {
    background-color: #f3f4f6; /* Light gray background */
}
.plan-radio:checked + label {
    border-color: #F96C00;
    box-shadow: 0 0 0 2px #F96C00;
}

/* Legal Pages (TOS, Privacy) */
.prose h2 {
    font-size: 1.25rem;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 600;
}
.prose a {
    color: #F96C00; /* Safety Orange */
    text-decoration: none;
}
.prose a:hover {
    text-decoration: underline;
}
#toggle-password:focus {
  outline: none !important;
  box-shadow: none !important;
}
.password-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
