body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.settings {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 14px;
}

.social-icon, .settings {
    transition: all 0.3s ease;
}

.settings input[type="checkbox"],
.settings input[type="radio"] {
    accent-color: #4CAF50;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.settings select {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.social-box {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icon {
    margin: 3px;
    font-size: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 700px;
    z-index: 20;
}

.checkbox-container label {
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 45px;
    width: 60px;
    height: 60px;;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-container label:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.checkbox-container input[type="checkbox"] {
    display: none; /* Hide the default checkbox */
}

/* Style for selected checkboxes */
.checkbox-container label.selected {
    transform: scale(1.05);
    border-color: #007bff; /* Highlight color */
}

.social-sidebar {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.social-sidebar ul {
    list-style: none;
    padding: 0;
}

.social-sidebar ul li {
    display: none;
    margin-bottom: 10px;
}

.selected-icons {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 20;
}

/* Icon Shapes */
.social-box.round .social-icon {
    border-radius: 15px;
}

.social-box.circle .social-icon {
    border-radius: 50%;
}

/* Sidebar Positions */
.social-box.left {
    left: 0;
    top: 50%;
    flex-direction: column;
    transform: translateY(-50%);
}

.social-box.right {
    right: 0;
    top: 50%;
    flex-direction: column;
    transform: translateY(-50%);
}

.social-box.top {
    top: 0;
    left: 50%;
    flex-direction: row;
    transform: translateX(-50%);
}

.social-box.bottom {
    bottom: 0;
    left: 50%;
    flex-direction: row;
    transform: translateX(-50%);
}

/* Add Icon Space */
.social-box.space .social-icon {
    margin: 5px;
}

.social-box.collapsed .social-icon {
    transform: translateX(-100%);
}

.social-box.right.collapsed .social-icon {
    transform: translateX(100%);
}

.social-box.top .social-icon,
.social-box.bottom .social-icon {
    transform: translateY(0);
}

.social-box.top.collapsed .social-icon {
    transform: translateY(-100%);
}

.social-box.bottom.collapsed .social-icon {
    transform: translateY(100%);
}

.social-box.top.collapsed .social-icon:hover,
.social-box.bottom.collapsed .social-icon:hover {
    transform: translateY(0);
}