/* admin-style.css */

.seatext-settings-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
}

.seatext-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.seatext-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    max-width: 60%;
    line-height: 1.2;
}


.seatext-main-title {  /* Added for consistency from the new PHP */
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    max-width: 60%;
    line-height: 1.2;
}



.seatext-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 35%;
}

.seatext-button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

.seatext-button:hover {
    background-color: #f0f0f0;
}

.button-explanation {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.seatext-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.seatext-product-card {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: auto;
}

.seatext-product-card img {
    width: 100%;
    object-fit: cover;
    margin-bottom: -20px; /* Negative margin as in the old inline style*/
    position: relative;
}


.card-content { /* To make sure this works as in the old version */
    flex-grow: 1; /* Allow content to take up available space */
}