/* pretty-styles.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #4A4A4A;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #EF1771;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #4A4A4A;
}

input[type="email"],
input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
select:focus {
    outline: none;
    border-color: #EF1771;
    box-shadow: 0 0 5px rgba(239, 23, 113, 0.5);
}

.strategy-block {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.strategy-block:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.block-title {
    color: #EF1771;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EF1771;
}

button {
    background-color: #EF1771;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d01562;
}

#refreshPlan {
    background-color: #149EFC;
}

#refreshPlan:hover {
    background-color: #0e7fd0;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #149EFC;
    border-radius: 50%;
}

#loadingOverlay {
    background-color: rgba(255, 255, 255, 0.8);
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #EF1771;
    width: 50px;
    height: 50px;
}

#confirmationMessage {
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

#validateEmail {
    background-color: #149EFC;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

#validateEmail:hover {
    background-color: #0e7fd0;
}

.optional {
    font-size: 0.8em;
    color: #666;
    font-style: italic;
}

.tooltip {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.success-message {
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.summary-container {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

.summary-container h3 {
    color: #EF1771;
    margin-top: 0;
}

.summary-container ul {
    list-style-type: none;
    padding-left: 0;
}

.summary-container li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

.summary-container li strong {
    color: #EF1771;
}