/**
Theme Name: DOMAGO
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: domago
Template: astra
*/
/* 
 * Dodati u style.css vašeg child theme-a
 * Stilovi za Custom Post Type: Poslodavci
 */

/* Filter wrapper */
.poslodavci-filters {
    animation: fadeIn 0.3s ease-in;
}

/* Responsive filters */
@media (max-width: 768px) {
    .poslodavci-filters > div {
        flex-direction: column !important;
    }
    
    .poslodavci-filters > div > div {
        width: 100% !important;
    }
}

/* Smooth transitions for filtering */
.poslodavac-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.poslodavac-item[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
}

/* Hover effects for cards */
.poslodavac-item .wp-block-cover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poslodavac-item .wp-block-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Button hover effects */
.poslodavac-item .wp-block-button__link {
    transition: all 0.3s ease;
}

.poslodavac-item .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Status badge styles */
.poslodavac-item .wp-block-buttons .wp-block-button:first-child {
    margin-bottom: 8px;
}

/* Results count animation */
#results-count {
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.poslodavci-loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

/* Empty state */
.poslodavci-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.poslodavci-empty h3 {
    margin-bottom: 10px;
    color: #333;
}

.poslodavci-empty p {
    color: #666;
    font-size: 16px;
}

/* Admin improvements */
.post-type-poslodavac .wp-list-table .column-title {
    width: 30%;
}

.post-type-poslodavac .wp-list-table .column-taxonomy-status {
    width: 15%;
}

.post-type-poslodavac .wp-list-table .column-taxonomy-drzava {
    width: 15%;
}

/* Gutenberg editor improvements */
.editor-styles-wrapper .poslodavac-preview {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    margin: 20px 0;
}

.editor-styles-wrapper .poslodavac-preview h4 {
    margin-top: 0;
    color: #1e1e1e;
}

.editor-styles-wrapper .poslodavac-preview p {
    margin: 8px 0;
    color: #444;
}