/* Frontend Styles for CV Manager */

.ypcv-form {
    max-width: 800px;
    margin: 0 auto;
}

.ypcv-form-section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ypcv-cv-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.ypcv-cv-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.ypcv-cv-card:hover {
    transform: translateY(-2px);
}
