/* Lead 'Em Up Green Standards Styles */

.leu-gs-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.leu-gs-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.leu-gs-dashboard-table th,
.leu-gs-dashboard-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.leu-gs-dashboard-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.leu-gs-success-message {
    padding: 15px;
    background: #e6ffe6;
    border: 1px solid #00cc00;
    margin-bottom: 20px;
    border-radius: 5px;
    color: #006600;
}

.leu-gs-standard-details {
    padding: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
}

.leu-gs-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.leu-gs-trait {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Loading Overlay */
.leu-gs-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.leu-gs-loading-text {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}

.leu-gs-dots span {
    font-size: 40px;
    animation: leu-blink 1.4s infinite both;
    color: #4CAF50;
}

.leu-gs-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.leu-gs-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes leu-blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* Card Layout */
.leu-gs-card-layout {
    position: relative;
    overflow: hidden;
    /* For watermark */
}

.leu-gs-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.leu-gs-traits-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    position: relative;
    z-index: 1;
}

.leu-gs-col-left {
    width: 60%;
    /* 3 traits roughly */
    padding: 0 15px;
    box-sizing: border-box;
}

.leu-gs-col-right {
    width: 40%;
    /* 2 traits + logo */
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.leu-gs-trait-item {
    margin-bottom: 20px;
    page-break-inside: avoid;
}

.leu-gs-team-logo-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.leu-gs-create-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}