



body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}
header {
    background-color: #f5f5f5;
    border-bottom: 2px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo img {
    height: 40px;
    margin-right: 10px;
}
header .search-bar input {
    padding: 8px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}
header .search-bar button {
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
header .search-bar button:hover {
    background-color: #c53030;
}

.coupon-header {
    display: flex;
    flex-direction: column; /* Asigura afi?area pe doua rānduri */
    align-items: center; /* Centreaza elementele pe orizontala */
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    align-items: center; /* Asigura alinierea imaginii ?i titlului pe acela?i rānd */
    gap: 10px; /* Spa?iere īntre imagine ?i titlu */
}

.header-left img {
    width: 50px; /* Redimensioneaza logo-ul */
    height: auto; /* Pastreaza propor?iile */
}

.main-title {
    font-size: 24px; /* Ajusteaza dimensiunea titlului */
    font-weight: bold;
    margin: 0;
}

.details {
    text-align: center; /* Centreaza con?inutul */
    margin-top: 10px; /* Adauga un spa?iu īntre titlu ?i detalii */
}



.content {
    padding: 20px;
}
.coupon-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.coupon {
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.coupon .discount {
    font-size: 24px;
    font-weight: bold;
    color: #e53e3e;
    text-align: center;
}

.coupon .info .verified {
    font-size: 14px;
    color: #6b46c1;
 
}
.coupon .info .description {
    font-size: 16px;
    font-weight: bold;
}

 .description a {
    color: #e53e3e; /* Culoare pentru link */
    text-decoration: none; /* Elimina sublinierea */
    font-weight: bold;
}

 .description a:hover {
    text-decoration: underline; /* Adauga subliniere la hover */
    color: #c53030; /* Culoare mai īnchisa pentru hover */
}



footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
    border-top: 2px solid #ddd;
}

.coupon .info span {
    display: block;
    margin-bottom: 10px;
}

.verified {
    font-weight: bold;
    color: #6b46c1;
}

.description a {
    color: #e53e3e; /* Culoare pentru link */
    text-decoration: none; /* Elimina sublinierea */
    font-size: 16px;
}

.description a:hover {
    text-decoration: none; /* Adauga subliniere la hover */
    color: #c53030; /* Culoare mai īnchisa pentru hover */
}

.last-updated {
    font-size: 14px;
    color: #555;
}

