/* Login Page  */

/* Main Dashboard Card */

body {
    font-family: "Almarai", sans-serif !important;
}

.agreement_text {
    font-size: 12px !important;
    color: black;
    font-family: "Almarai", sans-serif !important;
}

.dashboard-card{
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
}

/* Background Shape */
.dashboard-card::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:250px;
    height:250px;
    background: linear-gradient(135deg, #002d72, #0056d6);
    border-radius:50%;
    opacity:0.08;
}

/* Heading */
.dashboard-title{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color:#002d72;
    margin-bottom:20px;
}

/* Description */
.dashboard-text{
    color:#6c757d;
    font-size:16px;
    line-height:1.8;
    max-width:520px;
}

/* Buttons */
.dashboard-btn{
    background: linear-gradient(135deg, #002d72, #0056d6);
    border:none;
    color:#fff;
    padding:14px 30px;
    border-radius:14px;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 10px 25px rgba(0,45,114,0.15);
}

.dashboard-btn:hover{
    transform:translateY(-2px);
    color:#fff;
}

/* Outline Button */
.dashboard-btn-outline{
    border:2px solid #0056d6;
    color:#0056d6;
    padding:12px 28px;
    border-radius:14px;
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    transition:0.3s;
    display:inline-block;
}

.dashboard-btn-outline:hover{
    background:#0056d6;
    color:#fff;
}

/* Image Section */
.dashboard-image{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.10);
}

.dashboard-image img{
    width:100%;
    height:420px;
    object-fit:cover;
}

/* Small Stats Card */
.stats-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    margin-top:20px;
}

.stats-number{
    font-size:28px;
    font-weight:700;
    color:#002d72;
}

.stats-label{
    color:#6c757d;
    font-size:14px;
}

label{
	font-size:14px;
}

@media(max-width:768px){

    .dashboard-card{
        padding:30px;
    }

    .dashboard-title{
        font-size:34px;
    }

    .dashboard-image img{
        height:300px;
    }
}

/* Register Page  */

.register-card{
    background:#fff;
    border-radius:25px;
    padding:45px;
    border:1px solid #edf0f5;
    box-shadow:0 1px 27px rgba(0,0,0,0.08);
}

.form-control,
.form-select{
    /* border-radius:14px !important; */
    border-radius:7px !important;
    background:#f9fbfd;
    border:1px solid #dce3eb;
	height:40px !important;
	font-size: 13px !important;
}

.player-image-upload{
    width:180px;
    height:180px;
    border-radius:50%;
    overflow:hidden;
    position:relative;
    cursor:pointer;
}

.player-preview-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.upload-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    height:45px;
    background:rgba(0,45,114,0.75);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}



/* Payment Page */

 .payment-wrapper{
        min-height:100vh;
    }

    .payment-card{
        background:#fff;
        border-radius:24px;
        padding:35px;
        box-shadow:0 10px 35px rgba(0,0,0,0.08);
    }

    /* Submit Button */
    .submit-btn {
        background: linear-gradient(135deg, #002d72, #0056d6) !important;
        border: none;
        border-radius: 14px !important;
        transition: 0.3s !important;
        font-size: 17px !important;
        box-shadow: 0 8px 20px rgba(0, 45, 114, 0.25) !important;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
    }

    .StripeElement {
        padding-top: 4px;
    }

    .form-control{
        border:1px solid #dfe3ea;
    }

    .form-control:focus{
        box-shadow:none;
        border-color:#0056d6;
    }

/* View Payment Page  */

.payment-header{
    background: linear-gradient(135deg, #002d72, #0056d6);
    border-radius:24px;
    padding:45px;
    color:#fff;
    position:relative;
    overflow:hidden;
    margin-bottom:35px;
}

.payment-header::before{
    content:'';
    position:absolute;
    right:-60px;
    top:-60px;
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

.payment-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.payment-subtitle{
    font-size:16px;
    opacity:0.9;
    max-width:600px;
}

/* Summary Cards */
.summary-card{
    background:#fff;
    border-radius:20px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

.summary-card:hover{
    transform:translateY(-4px);
}

.summary-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #002d72, #0056d6);
    color:#fff;
    font-size:24px;
    margin-bottom:20px;
}

.summary-label{
    color:#6c757d;
    font-size:14px;
    margin-bottom:6px;
}

.summary-value{
    font-size:30px;
    font-weight:700;
    color:#002d72;
}

/* Payment Table */
.payment-table-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
    margin-top:35px;
}

.table-title{
    font-size:24px;
    font-weight:700;
    color:#002d72;
    margin-bottom:25px;
}

.table{
    margin-bottom:0;
}

.table thead{
    background:#f3f7ff;
}

.table thead th{
    border:none;
    padding:18px;
    color:#002d72;
    font-weight:700;
    font-size:14px;
}

.table tbody td{
    padding:18px;
    vertical-align:middle;
    border-color:#edf0f5;
    font-size:15px;
}

/* Status Badge */
.status-paid{
    background:#d1f7e3;
    color:#0f9d58;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.status-pending{
    background:#fff3cd;
    color:#c58b00;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

/* Action Button */
.view-btn{
    background:linear-gradient(135deg, #002d72, #0056d6);
    border:none;
    color:#fff;
    padding:10px 18px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.view-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}

/* Responsive */
@media(max-width:768px){

    .payment-header{
        padding:30px;
    }

    .payment-title{
        font-size:30px;
    }

    .table-responsive{
        overflow-x:auto;
    }
}