/* ========================================
   GreenStep Hub - Leads & Candidates System
   ======================================== */

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
}

/* Card Base */
.card {
    background: var(--card);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.2s;
    position: relative;
    border: 1px solid var(--border);
}

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

/* Card Types */
.card.lead {
    border-right: 4px solid var(--blue);
}

.card.converted {
    border-right: 4px solid var(--yellow);
    background: linear-gradient(135deg, var(--card), rgba(234, 179, 8, 0.05));
}

.card.selected {
    border: 2px solid var(--whatsapp);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.card.message-sent {
    border-top: 3px solid var(--sent);
}

.card.has-cv {
    border-left: 3px solid var(--cv);
}

.card.status-withdrawn {
    opacity: 0.6;
}

/* Card Header */
.card-checkbox {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 22px;
    height: 22px;
    accent-color: var(--whatsapp);
    cursor: pointer;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
}

.card-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

/* CV Button */
.cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: var(--cv);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    transition: all 0.2s;
}

.cv-btn:hover {
    background: #0891b2;
    transform: translateY(-1px);
}

/* Card Badges */
.card-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.card-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.badge-lead {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.badge-converted {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.badge-new {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green);
}

/* Card Details */
.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.detail-icon {
    color: var(--text3);
    font-size: 0.9rem;
    width: 20px;
}

.detail-text {
    color: var(--text2);
}

.detail-link {
    color: var(--blue);
    text-decoration: none;
}

.detail-link:hover {
    text-decoration: underline;
}

/* WhatsApp Link */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    color: var(--text1);
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}

.whatsapp-link:hover {
    color: var(--whatsapp);
    text-decoration: underline;
}

/* Process Status */
.process-status {
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
}

.process-status-title {
    font-size: 0.75rem;
    color: var(--text3);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    cursor: pointer;
    transition: all 0.2s;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.05);
    margin: 0 -0.4rem;
    padding: 0.3rem 0.4rem;
    border-radius: 4px;
}

.status-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
    transition: all 0.2s;
    flex-shrink: 0;
}

.status-checkbox.checked {
    background: var(--green);
    border-color: var(--green);
}

.status-checkbox.checked.blue { background: var(--blue); border-color: var(--blue); }
.status-checkbox.checked.pink { background: var(--calendar); border-color: var(--calendar); }
.status-checkbox.checked.green { background: var(--green); border-color: var(--green); }
.status-checkbox.checked.red { background: var(--red); border-color: var(--red); }
.status-checkbox.checked.gray { background: var(--text3); border-color: var(--text3); }

.status-checkbox svg {
    width: 12px;
    height: 12px;
    color: white;
    opacity: 0;
}

.status-checkbox.checked svg {
    opacity: 1;
}

.status-label {
    font-size: 0.8rem;
    color: var(--text2);
}

.status-item.checked .status-label {
    color: var(--text);
    font-weight: 500;
}

/* Notes */
.card-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    color: var(--note);
}

.card-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.card-note-title {
    font-weight: 600;
    font-size: 0.75rem;
}

.card-note-edit {
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.2rem;
}

.card-note-edit:hover {
    color: var(--note);
}

.card-note-text {
    color: var(--text2);
    white-space: pre-wrap;
    word-break: break-word;
}

.add-note-btn {
    background: rgba(245, 158, 11, 0.15);
    border: 1px dashed rgba(245, 158, 11, 0.5);
    color: var(--note);
    padding: 0.35rem;
    border-radius: 6px;
    width: 100%;
    font-family: inherit;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.add-note-btn:hover {
    background: rgba(245, 158, 11, 0.25);
    border-color: var(--note);
}

/* Card Footer */
.card-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text3);
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card-actions {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-convert {
    background: var(--yellow);
    color: #000;
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn-revert {
    background: var(--blue);
    color: white;
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn-calendar {
    background: var(--calendar);
    color: white;
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn-calendar:hover {
    background: #db2777;
}

/* Sent Toggle */
.sent-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.sent-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
    transition: all 0.2s;
}

.sent-checkbox:hover {
    border-color: var(--sent);
}

.sent-checkbox.checked {
    background: var(--sent);
    border-color: var(--sent);
}

.sent-checkbox svg {
    width: 16px;
    height: 16px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
}

.sent-checkbox.checked svg {
    opacity: 1;
}

.sent-label {
    font-size: 0.75rem;
    color: var(--text3);
}

/* Bulk Actions */
.bulk-actions {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
    border: 1px solid var(--whatsapp);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bulk-actions-title {
    font-weight: 600;
    color: var(--whatsapp);
}

.select-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.select-controls label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.select-controls input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--whatsapp);
}

.selected-count {
    background: var(--whatsapp);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-bulk-whatsapp {
    background: var(--whatsapp);
    color: white;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-bulk-whatsapp:disabled {
    background: var(--border);
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-header {
        padding-left: 0;
    }

    .card-checkbox {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   Leads Table Styles
   ======================================== */
#leadsSystem .table-container {
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--border);
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.leads-table th {
    background: #e2e8f0;
    color: var(--text2);
    font-weight: 600;
    padding: 0.5rem 0.4rem;
    text-align: right;
    font-size: 0.7rem;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.leads-table td {
    padding: 0.4rem 0.4rem;
    text-align: right;
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
}

.leads-table tbody tr {
    background: #f8fafc;
}

.leads-table tbody tr:nth-child(even) {
    background: #f1f5f9;
}

.leads-table tbody tr:hover {
    background: #e2e8f0;
    transition: background 0.2s ease;
}

.leads-table tbody tr.message-sent-row {
    background: linear-gradient(90deg, rgba(37, 211, 102, 0.08), transparent);
}

/* Message Sent Badge */
.message-sent-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.message-sent-badge.sent {
    background: rgba(37, 211, 102, 0.15);
    color: #128c7e;
}

.message-sent-badge.sent:hover {
    background: rgba(37, 211, 102, 0.25);
}

.message-sent-badge.not-sent {
    background: var(--bg2);
    color: var(--text3);
}

.message-sent-badge.not-sent:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
}

/* Email link in table */
.email-link {
    color: var(--blue);
    text-decoration: none;
    font-size: 0.75rem;
}

.email-link:hover {
    text-decoration: underline;
}

/* Table Actions */
.table-actions {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
}

.btn-sm {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-sm.btn-convert {
    background: var(--yellow);
    color: #000;
}

.btn-sm.btn-revert {
    background: var(--blue);
    color: white;
}

.btn-sm.btn-delete {
    background: var(--red);
    color: white;
}

.btn-sm:hover {
    opacity: 0.8;
}

/* Delete All Button */
.btn-delete-all {
    background: var(--red);
    color: white;
}

.btn-delete-all:hover {
    background: #dc2626;
}

/* Project Select Wrapper */
.project-select-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-add-project {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-project:hover {
    background: #16a34a;
    transform: scale(1.05);
}

/* Row checkbox */
.row-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--whatsapp);
    cursor: pointer;
}

/* Sent toggle in table */
.leads-table .sent-toggle {
    justify-content: center;
}

.leads-table .sent-checkbox {
    width: 20px;
    height: 20px;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: default;
    white-space: nowrap;
}

.status-badge.status-filled {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
    cursor: pointer;
    transition: all 0.2s;
}

.status-badge.status-filled:hover {
    background: rgba(34, 197, 94, 0.3);
    transform: scale(1.05);
}

.status-badge.status-waiting {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.status-badge .badge-icon {
    display: inline-block;
    width: 14px;
    text-align: center;
    font-size: 0.7rem;
}

/* Lead is candidate row highlight */
.leads-table tbody tr.lead-is-candidate {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08), transparent);
}

.leads-table tbody tr.lead-is-candidate:nth-child(even) {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08), #f1f5f9);
}

/* Orange stat value */
.stat-value.orange {
    color: #f59e0b;
}

/* Candidate Details Modal */
.candidate-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.candidate-details .detail-row {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border);
}

.candidate-details .detail-row:last-child {
    border-bottom: none;
}

.candidate-details .detail-label {
    font-weight: 600;
    color: var(--text2);
    min-width: 100px;
}

.candidate-details .detail-value {
    color: var(--text);
}

.candidate-details .motivation-row {
    flex-direction: column;
    gap: 0.5rem;
}

.candidate-details .motivation-row .detail-value {
    background: var(--bg2);
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Legacy leads header overrides removed - now uses standard .system-header */

/* Analyze button */
.btn-analyze {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
    color: white !important;
    border: none !important;
}

.btn-analyze:hover {
    background: linear-gradient(135deg, #7c3aed, #5b21b6) !important;
    transform: translateY(-1px);
}

/* ========================================
   Leads Filters - Compact Layout
   ======================================== */
#leadsSystem .filters-section {
    padding: 0.75rem 1rem;
}

#leadsSystem .filters-row {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

#leadsSystem .filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

#leadsSystem .filter-label {
    font-size: 0.7rem;
}

#leadsSystem .filter-input,
#leadsSystem .filter-select {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    min-width: 120px;
    height: 32px;
}

#leadsSystem .project-select-wrapper .filter-select {
    min-width: 180px;
}

#leadsSystem .btn-add-project {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    height: 32px;
}

#leadsSystem .btn-show,
#leadsSystem .btn-reset {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    height: 32px;
}

#leadsSystem .filtered-count {
    font-size: 0.75rem;
    color: var(--text3);
    white-space: nowrap;
}

/* ========================================
   Bulk Actions Bar
   ======================================== */
.bulk-actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    font-size: 0.85rem;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bulk-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.bulk-icon {
    font-size: 0.9rem;
}

.bulk-label {
    font-weight: 500;
    opacity: 0.9;
    font-size: 0.8rem;
}

.bulk-count {
    background: white;
    color: #128c7e;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

.bulk-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: white;
    color: #128c7e;
    padding: 0.35rem 0.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-whatsapp:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.bulk-actions-bar .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bulk-actions-bar .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Modal Styles */
.bulk-whatsapp-info {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.bulk-whatsapp-info .info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.bulk-whatsapp-info .badge-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.bulk-whatsapp-info .badge-text {
    font-size: 0.85rem;
}

.message-templates {
    margin: 1rem 0;
}

.template-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-template {
    background: var(--bg2);
    color: var(--text2);
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-template:hover {
    background: var(--bg);
    border-color: var(--blue);
    color: var(--blue);
}

.whatsapp-preview {
    margin-top: 1rem;
}

.preview-box {
    background: #e7f8e9;
    border: 1px solid #b8e6be;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text3);
    min-height: 80px;
    white-space: pre-wrap;
    direction: rtl;
}

.preview-box.has-content {
    color: var(--text);
    background: #dcfce7;
}

/* WhatsApp Links Modal */
.whatsapp-instructions {
    background: linear-gradient(135deg, #e7f8e9, #dcfce7);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #128c7e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.85rem;
    color: var(--text);
}

.copy-message-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.btn-copy-message {
    background: #128c7e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy-message:hover {
    background: #0d7a6e;
}

.copy-status {
    color: #128c7e;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-status.copied {
    opacity: 1;
}

.whatsapp-links-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.whatsapp-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.whatsapp-link-item:last-child {
    border-bottom: none;
}

.whatsapp-link-item:hover {
    background: var(--bg);
}

.link-number {
    width: 22px;
    height: 22px;
    background: var(--bg2);
    color: var(--text3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.link-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
}

.link-phone {
    font-size: 0.8rem;
    color: var(--text3);
    direction: ltr;
}

.btn-whatsapp-link {
    background: #25d366;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
}

.btn-whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

.link-status {
    width: 20px;
    font-size: 0.9rem;
    color: #25d366;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}

.link-status.sent {
    opacity: 1;
}

.btn-success {
    background: var(--green);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

/* Notes Input in Table */
.notes-cell {
    min-width: 150px;
}

.notes-input {
    width: 100%;
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: all 0.2s;
}

.notes-input:hover {
    border-color: var(--blue);
}

.notes-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    background: white;
}

.notes-input::placeholder {
    color: var(--text3);
    font-size: 0.7rem;
}
