@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
    --wp--style--global--content-size: 1300px;
    --wp--style--global--wide-size: 1387px;
}


/* Paste the CSS content from the <style> block of your index.html here.
   This is the same CSS you provided before. */
   body {
    font-family: 'Roboto', sans-serif;
    background-color: black;
    color: #edf2f7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Modal CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #2d3748;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #4a5568;
    width: 80%;
    border-radius: 0.5rem;
}

.close {
    color: #cbd5e0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #f7fafc;
    text-decoration: none;
}

/* Gym theme button */
.gym-button {
            background-color: #4a5568;
            color: #edf2f7;
            border-radius: 0.375rem;
            transition: background-color 0.3s ease;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        }

        .gym-button:active {
            background-color: #718096;
        }

        /* Tab styling */
        .tab-button {
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
            box-shadow: none !important
        }

        .tab-button.active {
            border-color: #f6ad55;
        }
/* Form input */
input,
select {
    background-color: #4a5568;
    color: #edf2f7;
    border: 1px solid #718096;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

input:focus,
select:focus {
    outline: none;
    border-color: #f6ad55;
    box-shadow: 0 0 0 0.125rem rgba(246, 173, 85, 0.25);
}

/* Card Styling */
.card {
    margin-bottom: 30px;
    overflow: auto;
    max-height: 500px;
    background-color: #2d3748;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out;
}

.card:active {
    transform: scale(0.98);
}

/* Animation classes from Animate.css */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

/* Table Styling */
table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 2px solid #A8DFF9;
    text-align: left;
    padding: 0.5rem;
}

th {
    background-color: #CBECFC;
    color: #cbd5e0;
}

tbody tr:nth-child(even) {
    background-color: #E5E7EB;
}

tbody tr:hover {
    background-color: #CBECFC;
    color: black;
    cursor: pointer;
}

/* Icon Styling */
i {
    margin-right: 0.5rem;
    color: #cbd5e0;
}

/* Log Styling */
#activity-log {
    max-height: 150px;
    overflow-y: auto;
    padding: 0.5rem;
    border: 1px solid #4a5568;
    border-radius: 0.375rem;
    margin-top: 1rem;
    background-color: #374151;
}

#activity-log p {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    color: #cbd5e0;
}

/* Footer Styling */
footer {
    background-color: #374151;
    color: #cbd5e0;
    padding: 1rem;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid #4a5568;
    box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
 /* Added styling to the selected exercise */
.selected-exercise {
    background-color: #6366F1; /* Example color, change as desired */
    color: white;
}

/* .hidden {
    display: none !important;
}

.gwtc-admin-panel .tab-content {
    display: block;
}
.gwtc-admin-panel .tab-content.hidden {
    display: none !important;
} */



 .admin-panel-container {
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px;
        background-color: #1f2937;
        border-radius: 8px;
        color: #d1d5db;
    }
    .tabs {
        display: flex;
        gap: 10px;
     	padding:10px;
    }
/*     .tab-button {
        padding: 10px 20px;
        background-color: #4b5563;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        color: #d1d5db;
        transition: background-color 0.3s;
    } */
/*     .tab-button.active {
        background-color: #9333ea;
        color: #fff;
    } */
    .tab-content {
        display: none;
    }
    .tab-content.hidden {
        display: none;
    }
    table {
        border-collapse: collapse;
        width: 100%;
    }
    th, td {
        border: 1px solid #4b5563;
    }
/*     .gym-button {
        background-color: #6b7280;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .gym-button:hover {
        background-color: #4b5563;
    } */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .modal-content {
        background-color: #1f2937;
        margin: 15% auto;
        padding: 20px;
        border-radius: 8px;
        width: 80%;
        max-width: 500px;
        position: relative;
    }
    .close {
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 24px;
        cursor: pointer;
        color: #d1d5db;
    }
    .animate__animated {
        animation-duration: 0.5s;
    }




    /* Template Container Styling */
    .user-templates-container {
        /* Existing styles */
    }

    /* Each template */
    .bg-gray-800 {
        /* Existing styles */
    }

    /* Template data/exercise list section */
    .mb-4 {
        /* Existing styles */
    }

    /* Existing responses section */
    .exercise-response {
        margin-top: 1rem;
        padding: 0.75rem;
        background-color: #374151; /* Gray-700 */
        border-radius: 0.375rem;
    }

    .hidden {
        display: none;
    }
        /* Modal Styling */
    .modal {
        z-index: 1000; /* Ensure it's on top */
    }

    .modal-content {
        position: relative; /* For close button positioning */
    }








