.ank-container{
    max-width:675px;
    margin:0 auto;
    padding:20px;
}
.name-result{
    display:flex;
    gap:20px;
    margin-top:25px;
}

.result-card{
    flex:1;
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border:1px solid #ececec;
    transition:.3s;
}
.result-card:hover{
    transform:translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.bg-gray
{
	background:#ffffff;
}
.bg-gradient
{
	background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}
.bg-gray-gradient
{
	background:linear-gradient(to bottom, #e8e8e8, #d6d6d6);
}
.bg-yellow
{
	background:linear-gradient(to right, #f8ffb0, #fdffe4);
}
.bg-skyblue
{
	background:linear-gradient(to right, #c6e7ff, #e2f3ff);
}
.bg-pista-light
{
	background:linear-gradient(to right, #c0ffeb, #dcfff4);
}
.bg-cream
{
	background:linear-gradient(to right, #ffeed7, #fff8f0);
}
.bg-purple-light
{
	background:linear-gradient(to right, #ecdbff, #f1e3ff);
}
.bg-pink-light
{
	background:linear-gradient(to right, #ffd3fe, #ffe3fe);
}

.result-title{
    display:block;
    margin-bottom:12px;
    font-weight:bold;
}

.result-value{
    font-size:24px;
    font-weight:700;
    line-height:1;
}

@media(max-width:600px){

    .name-result{
        flex-direction:column;
    }

}
.ank-form{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.ank-form h2{
    text-align:center;
    margin-bottom:25px;
   
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    
}
.dob-row{
    display:flex;
    gap:10px;
}

/*.dob-row select{
    flex:1;
    padding:12px;
    border:1px solid #d6d6d6;
    border-radius:8px;
    outline:none;
    font-size:15px;
    background:#fff;
}*/

.dob-row select:focus{
    border-color:#0066ff;
}

.gender-box{
    display:flex;
    gap:25px;
}

.gender-box label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-weight:500;
}

.submit-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

@media(max-width:600px){

    .dob-row{
        flex-direction:column;
    }

    .ank-form{
        padding:20px;
    }

}
.w-100
{
	width:100%;
	box-sizing: border-box;
}
.mx-auto
{
	margin: 0 auto;
}
.text-red
{
	color :red;
}
.text-blue
{
	color:blue;
}
.text-green
{
	color:green;
}
.text-center
{
	text-align:center;
}
.text-left
{
	text-align:left;
}
.text-bold
{
	font-weight:bold;
}
.anktable tr th
{
	background:#e8e8e8;
}
.mulank
{
	color:blue;
}
.bhagyank
{
	color:green;
}
.kua
{
	color:#9f00ff;
}
.loshu-grid{
    width:100%;
    max-width:360px;
    margin:25px auto;
    border-collapse:collapse;
    table-layout:fixed;
    background:#fff;
    border:3px solid #333;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);    
    overflow:hidden;
}

.loshu-grid td{
    width:33.33%;
    height:110px;
    border:3px solid #333;
    text-align:center;
    vertical-align:middle;
    font-size:34px;
    font-weight:700;
    color:#333;
    padding:10px;
    transition:0.3s;
}

.loshu-grid td:hover{
    background:#e8e8e8;
}

.loshu-grid td:empty::after{
    content:"-";
    color:#c5c5c5;
    font-size:22px;
    font-weight:400;
}