/* Main Container */
.daisy-debug-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.daisy-debug-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #e49b0f;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.daisy-debug-title-section h1 {
    margin: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 36px;
    line-height: 60px;
    padding: 0;
}

.daisy-debug-logo .dashicons-buddicons-replies {
    color: #e49b0f;
    background: #ffffff;
    width: 60px;
    height: 60px;
    font-size: 32px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.daisy-debug-container {
    display: flex;
    gap: 20px;
}

/* Form Area */

.daisy-debug-wrap form {
    flex: 2;
/*
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    */
}

/* Sidebar */
.daisy-debug-sidebar {
    flex: 1;
}
/*
.daisy-debug-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
*/
.daisy-debug-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.daisy-debug-card-header {
    background: #e49b0f;
    padding: 15px 20px;
}

.daisy-debug-card-header h2 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.daisy-debug-card-body {
    padding: 20px;
}

.daisy-debug-card-body p {
    margin-top: 0;
}

/* Info Items */
.daisy-debug-info-item {
    margin-bottom: 15px;
}

.daisy-debug-info-item:last-child {
    margin-bottom: 0;
}

.daisy-debug-info-item h3 {
    margin: 0 0 5px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1d2327;
}

.daisy-debug-info-item p {
    margin: 0;
    color: #646970;
    font-size: 14px;
    padding-left: 28px;
}

/* Toggle Switch */
.daisy-switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
}

.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: 17px;
}

.daisy-slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .daisy-slider {
    background-color: #e49b0f;
}

input:checked + .daisy-slider:before {
    transform: translateX(13px);
}

/* System Info */
.daisy-system-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daisy-system-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Modal Styles */
.daisy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.daisy-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.daisy-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.daisy-close-modal:hover {
    color: black;
}

.daisy-log-contents {
    margin-top: 15px;
}

.daisy-log-contents pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 3px;
    max-height: 60vh;
    overflow-y: auto;
}