/* Custom Gemnote color classes */

/* Text colors */
.text-gemnote-black {
    color: #111111 !important;
}

.text-gemnote-white {
    color: #FFFFFF !important;
}

.text-gemnote-dark-gray {
    color: #333333 !important;
}

.text-gemnote-medium-gray {
    color: #666666 !important;
}

.text-gemnote-light-gray {
    color: #999999 !important;
}

/* Background colors */
.bg-gemnote-black {
    background-color: #111111 !important;
}

.bg-gemnote-white {
    background-color: #FFFFFF !important;
}

.bg-gemnote-background-offwhite {
    background-color: #F9F9F9 !important;
}

.bg-gemnote-background-beige {
    background-color: #F5F1ED !important;
}

.bg-gemnote-background-light-beige {
    background-color: #FAF7F3 !important;
}

.bg-gemnote-background-warm-gray {
    background-color: #F3F2F1 !important;
}

.bg-gemnote-dark-gray {
    background-color: #333333 !important;
}

.bg-gemnote-medium-gray {
    background-color: #666666 !important;
}

.bg-gemnote-light-gray {
    background-color: #999999 !important;
}

.bg-gemnote-very-light-gray {
    background-color: #CCCCCC !important;
}

.bg-gemnote-darker-gray {
    background-color: #E8E8E8 !important;
}

/* Text colors for new background shades */
.text-gemnote-very-light-gray {
    color: #CCCCCC !important;
}

.text-gemnote-warm-gray {
    color: #8B8680 !important;
}

.text-gemnote-beige-text {
    color: #A0956B !important;
}

/* Border colors */
.border-gemnote-black {
    border-color: #111111 !important;
}

.border-gemnote-border {
    border-color: #E5E7EB !important;
}

.border-gemnote-dark-gray {
    border-color: #333333 !important;
}

.border-gemnote-light-gray {
    border-color: #999999 !important;
}

/* Font utilities */
.font-sans {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

/* Text size utilities */
.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
}

.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}

.text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
}

.text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
}

/* Spacing utilities */
.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.pt-4 {
    padding-top: 1rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

/* Layout utilities */
.flex {
    display: flex !important;
}

.items-center {
    align-items: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.space-x-4>*+* {
    margin-left: 1rem !important;
}

.space-x-6>*+* {
    margin-left: 1.5rem !important;
}

/* Border utilities */
.border-t {
    border-top-width: 1px !important;
}

.border-b-2 {
    border-bottom-width: 2px !important;
}

/* Rounding utilities */
.rounded-md {
    border-radius: 0.375rem !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.rounded-full {
    border-radius: 9999px !important;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Hover effects */
.hover\:opacity-70:hover {
    opacity: 0.7 !important;
}

.hover\:bg-gemnote-background-offwhite:hover {
    background-color: #F9F9F9 !important;
}

.hover\:text-gemnote-black:hover {
    color: #111111 !important;
}

/* Size utilities */
.min-h-screen {
    min-height: 100vh !important;
}

.max-w-6xl {
    max-width: 72rem !important;
}

/* Text alignment */
.text-center {
    text-align: center !important;
}

/* Notification System */
.gemnote-notification {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    z-index: 50;
    max-width: 350px;
}

.gemnote-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.gemnote-notification-success {
    background-color: #DEF7EC;
    /* Light green */
    color: #046C4E;
    /* Dark green */
}

.gemnote-notification-error {
    background-color: #FDE8E8;
    /* Light red */
    color: #9B1C1C;
    /* Dark red */
}

.gemnote-notification-warning {
    background-color: #FEF3C7;
    /* Light amber */
    color: #92400E;
    /* Dark amber */
}

.gemnote-notification-info {
    background-color: #E1EFFE;
    /* Light blue */
    color: #1E429F;
    /* Dark blue */
}