/* styles.css */

/* Style the header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

/* Style the navigation menu */
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style the h1 heading */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style the button */
button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Center the button */
button {
    display: block;
    margin: 0 auto;
}

/* Center the content */
body {
    text-align: center;
    padding: 20px;
}

/* Optional: Add a bit of spacing around the button */
button {
    margin-top: 20px;
}

/* Optional: Add a border around the button */
button {
    border: 2px solid #007BFF;
    border-radius: 5px;
}

/* Style the drag-and-drop area */
.drag-and-drop {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.drop-area {
    width: 50%; /* 50% of the parent container */
    height: 50vh; /* 50% of the viewport height */
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

/* Style the draggable items */
.draggable-items {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.draggable-item {
    background-color: #007BFF;
    color: #fff;
    text-align: center;
    line-height: 40px;
    margin: 5px;
    cursor: pointer;
}

.small {
    width: 40px;
    height: 40px;
}

.medium {
    width: 80px;
    height: 80px;
}

.large {
    width: 120px;
    height: 120px;
}

.draggable-item:hover {
    background-color: #0056b3;
}