/*
 Theme Name: GeneratePress Child
 Theme URI: http://example.com/generatepress-child
 Description: A child theme for GeneratePress that loads like an app.
 Author: Your Name
 Author URI: http://example.com
 Template: generatepress
 Version: 1.0.0
*/

/* Add your custom styles here */
/* ... existing styles */

/* Skeleton loading styles */
.skeleton {
    background-color: #e0e0e0;
    border-radius: 4px;
    display: inline-block;
    height: 1em;
    width: 100%;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-text {
    width: 100%;
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1em;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

/* ... existing styles */

@media (max-width: 768px) {
    #secondary {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


