.vukomers-account {
    margin: 0 auto;
}

.vukomers-section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #c8c8c8;
    border-radius: 0;
    background: #fff;
}

.vukomers-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight:5600;
    color: black;
}

.vukomers-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vukomers-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vukomers-field label {
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.vukomers-field input,
.vukomers-field select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.vukomers-button {
    padding: 12px 24px;
    background: #E62426;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
    font-family: inherit;
}

.vukomers-button:hover {
    background: black;
    color: white;
}

.vukomers-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.vukomers-message {
    padding: 10px;
    border-radius: 0;
    font-size: 14px;
    display: none;
}

.vukomers-message.success {
    background: #f0f9eb;
    color: #67c23a;
    border: 1px solid #e1f3d8;
}

.vukomers-message.error {
    background: #fef0f0;
    color: #f56c6c;
    border: 1px solid #fde2e2;
}

.vukomers-notice {
    text-align: center;
    padding: 20px;
    background: #fef0f0;
    color: #f56c6c;
    border-radius: 0;
    margin: 20px 0;
    border: 1px solid #fde2e2;
}

@media (max-width: 768px) {
    .vukomers-account {
        padding: 0 15px;
    }
    
    .vukomers-section {
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .vukomers-button {
        width: 100%;
        align-self: stretch;
    }
}


.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    margin-bottom: 6px;
}
.contact-info-list li, .contact-info-list li a {
    color: black;
    font-size: 14px;;
}