#libro-reclamaciones-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: 80px auto;
}

.empresa-info {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.label {
    font-weight: bold;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-indicator {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #777;
}

.step-indicator span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 10px;
}

.step-indicator.active {
    color: #007bff;
}

.step-indicator.active span {
    background-color: #007bff;
    color: white;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

#libro-reclamaciones-container label {
    display: block;
    margin-top: 10px;
}

#libro-reclamaciones-container input,
#libro-reclamaciones-container select,
#libro-reclamaciones-container textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#libro-reclamaciones-container button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#libro-reclamaciones-container button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#libro-reclamaciones-container button:not(:disabled):hover {
    background-color: #0056b3;
}

#libro-reclamaciones-container button.prev-step {
    background-color: #6c757d;
}