body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

.container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
}

h1 {
    color: #333;
}

form {
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 800px;
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="file"],
input[type="text"],
input[type="url"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="color"] {
    width: 100px;
    height:40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 10px;
}


#image-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: #e9e9e9;
    min-width: 150px;
    min-height: 150px;
    border: 2px solid #ccc;
    border-radius: 4px;
}

#image-previews img {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#drop-zone {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    color: #aaa;
    cursor: pointer;
}

#drop-zone.dragover {
    border-color: #00cc00;
    background-color: #f0fff0;
    color: #00cc00;
}



.modern-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #007bff;
    margin-right:5px;
}

.modern-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modern-button:hover {
    background-color: #0056b3;
}






/* Slide-in Installation Guide Panel */
.install-guide-panel {
    position: fixed;
    right: -950px;
    top: 0;
    width: 950px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.install-guide-panel.show {
    right: 0px;
}

.install-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.close-guide {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    color: #6c757d;
}

.install-guide-body {
    padding: 15px;
}

.guide-image {
    width: 100%;
    border: 1px solid #dee2e6;
    margin-top: 15px;
}
