/* resources/public/css/customization.css */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="file"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.error {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

.preview-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.preview-section h3 {
    margin-bottom: 10px;
}

.preview-section p,
.preview-section a {
    margin: 10px 0;
}

.button-group {
    margin-top: 20px;
    text-align: center;
}

.cancel-button {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 10px;
}

.cancel-button:hover {
    background-color: #5a6268;
}

.continue-button {
    padding: 10px 20px;
    background-color: #28a745; /* Green for Continue */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-right: 10px; /* Uniform spacing */
}

.continue-button:hover {
    background-color: #218838; /* Darker green on hover */
}

.save-button {
    padding: 10px 20px;
    background-color: #007bff; /* Blue for Save */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.save-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-group input[type="file"],
    .form-group input[type="url"],
    .form-group textarea {
        font-size: 0.9em;
    }

    .button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cancel-button,
    .continue-button,
    .save-button {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
    }
}