/* My Profile Page Styles */

/* Trial Information Box */
.trial-info-box {
    background-color: #f1f4ff;
    border-radius: 12px;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.trial-info-header {
    background-color: #0a33a4;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.trial-info-section {
    background-color: #FFFFFFB2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.trial-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.trial-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    gap: 8px;
}


.trial-label img {
    width: 20px;
    height: 20px;
}

.trial-separator {
    margin: 0 6px;
    font-weight: bold;
}

.trial-value {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.venue-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.venue-tag {
    background-color: #dfe6fc;
    color: #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.verified-icon {
    position: absolute;
    right: 10px;
    bottom: 12px;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.left-section-my-profile{
    padding: 0;
    color: white;
    overflow: hidden;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1200px) {
    .trial-registration-container {
            height: 688px;
        }
}

/* Profile specific overrides */
.right-section h1 {
    color: #0A175F;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-heading {
    display: inline-block;
    background-color: #9DA8F133;
    color: #0A0B5B;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
	position: relative !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .trial-info-box {
        padding: 16px;
    }

    .venue-list {
        flex-direction: column;
    }

    .venue-tag {
        width: 100%;
        text-align: center;
    }

    .right-section h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .section-heading {
        font-size: 14px;
        padding: 3px 10px;
    }
} 