/* Main Container */
.daisy-disable-blocks-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Title */
.daisy-title {
    color: #6d3b9e;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.daisy-icon {
    color: #ff6b6b;
}

/* Container Layout */
.daisy-container {
    display: flex;
    gap: 20px;
}

.daisy-main-content {
    flex: 1;
    min-width: 0;
}

.daisy-sidebar {
    width: 300px;
}

/* Cards */
.daisy-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.daisy-card-title {
    background: #6d3b9e;
    color: #fff;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
}

.daisy-card-content {
    padding: 20px;
}

/* Form Elements */
.daisy-form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.daisy-label-text {
    margin-left: 15px;
    font-weight: 500;
    color: #555;
}

/* Toggle Switch */
.daisy-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.daisy-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.daisy-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.daisy-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .daisy-slider {
    background-color: #6d3b9e;
}

input:checked + .daisy-slider:before {
    transform: translateX(26px);
}

/* Buttons */
.daisy-buttons-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.daisy-reset-form {
    margin: 0;
}

/* Tooltip */
.daisy-tooltip {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background: #6d3b9e;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    cursor: help;
    margin-left: 5px;
}

/* Links List */
.daisy-links-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.daisy-links-list li {
    margin-bottom: 8px;
}

.daisy-links-list a {
    color: #6d3b9e;
    text-decoration: none;
}

.daisy-links-list a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .daisy-container {
        flex-direction: column;
    }
    
    .daisy-sidebar {
        width: 100%;
    }
}