/*
 Theme Name:   Vault Child
 Theme URI:    https://example.com/vault-child
 Description:  A modern child theme for the Vault WordPress theme.
 Author:       Your Name
 Author URI:   https://example.com
 Template:     vault
 Version:      1.0.0
 Text Domain:  vault-child
*/

.nt-search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.98); /* Bela minimalist pozadina */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nt-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nt-search-content {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
}

.nt-close-search {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 50px;
    cursor: pointer;
    font-weight: 200;
}

.nt-input-group { margin-bottom: 20px; }

.nt-search-content input, 
.nt-search-content select {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid #eee;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}

.nt-search-content input:focus { border-bottom-color: #000; }

.nt-submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 18px;
    border: none;
    letter-spacing: 2px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}