/* === HLAVIČKA PROFILU KANDIDÁTA === */
.candidate-profile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto 20px;
    max-width: 500px;
    padding: 0 20px;
}

.candidate-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid #ddd;
    background-color: #f0f0f0;
}

.candidate-full-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}


/* === KARTA KANDIDÁTA === */
.candidate-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
}

/* === FORMULÁŘOVÉ PRVKY === */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 13px;
}

.form-group input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 95%;
}

/* === DISABLED STAVY === */
.form-group input[disabled] {
    background-color: #f9f9f9;
    color: #555;
}


/* === SOCIÁLNÍ ODKAZY === */
#candidate-socials-container{
    margin-left: 20px;
}

#candidate-socials-container .input-group {
    margin-bottom: 8px;
}

#candidate-socials-container input {
    width: 90%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.candidate-jobs-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-left: 20px;
}

.candidate-jobs-list li {
    margin-bottom: 6px;
}

.candidate-jobs-list a {
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
}

.candidate-jobs-list a:hover {
    text-decoration: underline;
}
