* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    padding: 20px;
    background: #f0f2f5;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.input-section, .preview-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
    color: #1a73e8;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

input, textarea, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

button {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.add-btn { background: #34a853; }
.remove-btn { background: #ea4335; }

.resume-preview {
    font-size: 14px;
    line-height: 1.5;
    padding: 20px;
}

.section-title {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 5px;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .preview-section {
        order: -1;
    }
}