/* ===== Global Styles ===== */
body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

/* ===== Page Title Section ===== */
.title-container{
    background:#2980b9;
    color:#fff;
    padding:20px 20px;
    border-radius:0 0 18px 18px;
    margin-bottom:20px;
}

.title-heading h1{
    margin:0;
    font-size:1.6rem;
    line-height:1.3;
}

.title-breadcrumb{
    margin-top:4px; 
    font-size:.85rem;
    line-height:1.3;
}

.title-breadcrumb a{
    color:#fff;
    text-decoration:none;
}


/* ===== Main Container ===== */
.container-custom {
    max-width: 450px;
    width: 95%;
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Found / Empty State ===== */
.found-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.found-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid #e6e6e6;
}

.found-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1.8rem 0;
    color: #2573a6;
    line-height: 1.4;
}

/* ===== Buttons ===== */
.found-btn {
    padding: 0.7rem 1.6rem;
    background: #2573a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.found-btn:hover {
    background: #2980b9;
    color: #ffffff;
}

.found-btn i {
    font-size: 1.1rem;
}

/* ===== Messages (Success / Error) ===== */
.message {
    margin: 0 auto 25px;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    max-width: 400px;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.message.success {
    border-color: #009688;
}

.message.success .icon {
    color: #009688;
}

.message.error {
    border-color: #e74c3c;
}

.message.error .icon {
    color: #e74c3c;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .found-card {
        padding: 2rem 1.5rem;
    }

    .found-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .found-btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.95rem;
    }

    .found-btn i {
        font-size: 1rem;
    }
}

@media(min-width:768px){
    .title-heading h1{
        font-size:1.9rem;
    }
}