/* candidate_engine.css */

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;

}

main {
    flex: 1;
}

.block-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: move;
}
.block-item:hover {
    background: #e9ecef;
}
.block-controls {
    float: right;
}
.add-block-btn {
    border: 2px dashed #6c757d;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.add-block-btn:hover {
    border-color: #0d6efd;
    background: #f0f8ff;
}