/* static/css/dashboard.css */
body {
    background-color: #f4f6f9;
    font-family: sans-serif;
}

.navbar {
    background-color: #212529;
}

.dash-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background: #ffffff;
}

.nav-tabs .nav-link {
    font-weight: 600;
    color: #495057;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 24px;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: transparent;
}

/* AI 제목 추천 드롭다운 스타일 */
#title_suggestion_box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #2563eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
}

#title_suggestion_box .suggestion-header {
    padding: 10px 15px;
    background: #eff6ff;
    font-weight: bold;
    color: #1d4ed8;
    border-bottom: 1px solid #dbeafe;
    font-size: 14px;
}

#suggested_title_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#suggested_title_list li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
    transition: background 0.15s;
}

#suggested_title_list li:hover {
    background: #f8fafc;
}