/*
Theme Name: Hello Elementor Child
Theme URI: http://example.com/
Description: Custom Child Theme for Hello Elementor
Author: Santosh
Author URI: http://example.com/
Template: hello-elementor
Version: 1.0
Text Domain: hello-elementor-child
*/


    /* Container */
    .tracking-wrapper {
        max-width:1200px;
        margin: 30px auto;
        font-family: Arial, sans-serif;
        background: #fff;
        padding: 25px 30px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        border-radius: 8px;
    }
    /* Form styles */
    .tracking-form {
        display: flex;
        margin-bottom: 20px;
        gap: 10px;
    }
    .tracking-form input[type="text"] {
        flex-grow: 1;
        padding: 12px 15px;
        font-size: 16px;
        border: 1.5px solid #ccc;
        border-radius: 5px;
        transition: border-color 0.3s ease;
    }
    .tracking-form input[type="text"]:focus {
        border-color: #0073e6;
        outline: none;
    }
    .tracking-form button {
        background-color: #0073e6;
        border: none;
        color: white;
        padding: 12px 25px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    .tracking-form button:hover {
        background-color: #005bb5;
    }
    /* Result container */
    .tracking-result h3 {
        color: #222;
        margin-bottom: 10px;
        font-weight: 600;
    }
    .tracking-status {
        padding: 12px;
        background: #e8f0fe;
        border-left: 5px solid #0073e6;
        margin-bottom: 15px;
        font-weight: 500;
        font-size: 16px;
        color: #333;
    }
    .tracking-details p {
        margin: 4px 0;
        font-size: 14px;
        color: #555;
    }
    /* History list */
    .tracking-history h4 {
        margin-top: 25px;
        font-weight: 600;
        color: #0073e6;
        border-bottom: 2px solid #0073e6;
        padding-bottom: 5px;
    }
    .tracking-history ul {
        list-style: none;
        padding-left: 0;
        max-height: 220px;
        overflow-y: auto;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: #fafafa;
    }
    .tracking-history ul li {
        padding: 10px 15px;
        border-bottom: 1px solid #ddd;
        font-size: 13px;
        color: #444;
    }
    .tracking-history ul li:last-child {
        border-bottom: none;
    }
    /* Responsive */
    @media(max-width: 480px) {
        .tracking-form {
            flex-direction: column;
        }
        .tracking-form button {
            width: 100%;
        }
    }


/* Extra Small (0–359px) */
@media (max-width: 359px) {
  .elementskit-post-image-card {
    height:auto !important;
}
}

/* Small (360–479px) */
@media (min-width: 360px) and (max-width: 479px) {

.elementskit-post-image-card {
    height:auto !important;
}
    
}

/* Medium (480–599px) */
@media (min-width: 480px) and (max-width: 599px) {
   .elementskit-post-image-card {
    height:auto !important;
}
}

/* Large (600–767px) */
@media (min-width: 600px) and (max-width: 767px) {
   
}

/* Tablet (768–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  
}

/* Desktop (992px+) */
@media (min-width: 992px) {
   
}

