body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);
    margin: 0;
    padding: 20px;
}

.title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}


.toolbar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.left-tools, .right-tools {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


.btn {
    padding: 8px 14px;
    margin: 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}


.btn.bold { background: #4caf50; }     
.btn.bold:hover { background: #3e8e41; }

.btn.underline { background: #2196f3; } 
.btn.underline:hover { background: #0b7dda; }

.btn.bullet { background: #ff9800; }   
.btn.bullet:hover { background: #e68900; }

.btn.line { background: #9c27b0; }     
.btn.line:hover { background: #7b1fa2; }

.btn.fontplus { background: #00bcd4; }
.btn.fontplus:hover { background: #0097a7; }

.btn.fontminus { background: #ff5722; } 
.btn.fontminus:hover { background: #e64a19; }

.btn.link { background: #27ae60; }      
.btn.link:hover { background: #1e8449; }

.btn.download { background: #34495e; }  
.btn.download:hover { background: #2c3e50; }


.template-select {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-right: 10px;
}


.color-picker {
    margin: 5px;
    height: 35px;
    border: none;
    cursor: pointer;
}


#cv-container { background: transparent; }

.page {
    width: 794px;
    height: 1123px;
    margin: 20px auto;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    outline: none;
    page-break-after: always;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 8px;
}


.classic { background: white; color: #333; }
.black { background: #1e1e1e; color: white; }
.blue { background: white; border-left: 15px solid #4a90e2; color: #333; }