/* === Global Theme Overrides for Note AI === */

body {
    background-color: #0d1b2a !important;
    color: #e0f7fa !important;
    font-family: Arial, sans-serif;
}

/* === Snippet Card Container === */
.snippet-card {
    background-color: #1b263b !important;
    color: #e0f7fa !important;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* === Header (language) === */
.snippet-card h5 {
    color: #64b5f6 !important;
    font-weight: bold;
    white-space: pre-wrap;
    margin-bottom: 10px;
}

/* === Description Text === */
.snippet-card .description-text {
    color: #fbc02d ;
    white-space: pre-wrap;
}

/* === Preformatted Code Blocks === */
.snippet-card pre {
    background-color: #0d1b2a !important;
    color: #e0f7fa !important;
    padding: 10px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.95rem;
    white-space: pre-wrap;
}

/* === Tags === */
.snippet-card .tags {
    color: #90caf9 !important;
    margin-top: 10px;
}

/* === Checkboxes (CLI, GUI, Code) === */
.snippet-card .form-check-label {
    color: #cfd8dc !important;
}

/* === Buttons === */
.snippet-card button,
.snippet-card .btn {
    margin-right: 6px;
    font-weight: bold;
}

.snippet-card .btn-danger {
    background-color: #e53935 !important;
    border-color: #e53935 !important;
    color: #fff !important;
}

.snippet-card .btn-danger:hover {
    background-color: #ef5350 !important;
    border-color: #ef5350 !important;
}

.snippet-card .btn-secondary {
    background-color: #1e88e5 !important;
    border-color: #1e88e5 !important;
    color: #fff !important;
}

.snippet-card .btn-secondary:hover {
    background-color: #2196f3 !important;
    border-color: #2196f3 !important;
}

.snippet-card .btn-light {
    background-color: #eeeeee !important;
    border-color: #cccccc !important;
    color: #000;
}

.snippet-card .btn-light:hover {
    background-color: #e0e0e0 !important; 
    border-color: #bbbbbb !important;
}

/* === Tag Highlights (underline keywords, etc.) === */
.snippet-card u {
    text-decoration-color: #fbc02d;
}



.form-field h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}



.description-text.tags-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    white-space: normal;
    margin-bottom: 0;
}

.description-text.tags-line strong {
    min-width: 70px;
    margin-right: 5px;
}
