﻿/* Wrapping element 
 Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    /*        margin: 0 !important;
    padding: 0 !important;*/
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 250px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}




/*-----------------V Card QR Generator css style------------*/

.form-section {
    width: 700px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 19px;
    row-gap: 4px;
    align-items: center;
    width: 100%;
}

.form-section label {
    grid-column: 1;
    font-weight: bold;
    text-align: left;
    margin: 0;
    white-space: nowrap;
}

.form-section .form-control,
.form-section input[type="text"],
.form-section input[type="file"] {
    grid-column: 2;
    width: 100%;
    max-width: 100%;
    padding: 8px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-section span[style*="color:Red"],
.form-section .RequiredFieldValidator {
    grid-column: 2;
    font-size: 12px;
    display: block;
    width: 100%;
    text-align: right;
    margin-left: 50px;
}

.btn-generate {
    background-color: #3399FF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

    .btn-generate:hover {
        background-color: #1e7fd6;
    }

/* Container for the Card Design View */
.card-builder-layout {
    display: none;
    gap: 10px;
    font-family: Arial, sans-serif;
    padding: 10px;
    border: 1px dashed #bbb;
    width: fit-content;
}

    /* Applied after the button click */
    .card-builder-layout.show-flex {
        display: flex;
    }

/* Clickable Circular Avatar */
.avatar-clickable-label {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.QRtypestyle{
    justify-content:center;
    text-align:center;
}

.avatar-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*  Text and QR Details  */
.details-section {
    display: flex;
    flex-direction: column;
}

.text-group {
    display: flex;
    flex-direction: column;
    width: auto;
}

.profile-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #333;
    text-align:center;
}

.profile-title {
    font-size: 16px;
    color: #666;
    margin: 0;
    text-align:center;
}

.qrcode-display {
    width: 220px;
    height: 220px;
    border: 1px solid #ddd;
    background: #fff;
   
}


/* heading */
.page-main-title {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    font-size:30px;
}

/*  left and right */
.split-workspace-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Right Column */
.output-preview-section {
    flex: 1;
    max-width: 44%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
   
}


.socialmedialabel {
    font-weight: bold;
}

.Socialmediaradio {
    margin-top: 5px;
    margin-bottom: 5px;
}

.labelYes {
    margin-right: 15px;
    font-weight: normal;
    cursor: pointer;
}

.labelno {
    font-weight: normal;
    cursor: pointer;
}

.profileicon {
    width: 90% !important;
    height: 90% !important;
    fill: #ccc !important;
}


.downloadBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3399FF !important;
    color: #ffffff !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 8px ;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
    margin-top:10px;
}

    /* Hover state effect */
    .downloadBtn:hover {
        background-color: #1e7fd6;
        text-decoration: none;
    }

    .downloadBtn .icon {
        margin-right: 8px;
        font-size: 18px;
        display: inline-block;
        line-height: 1;
    }


.custom-dropdown-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

/* dropdown icon */
.structural-dropdown {
    width: 100%;
    padding-right: 40px !important;
    appearance: none; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    background-color: #ffffff;
    cursor: pointer;
}

/* Pseudo-element injector rule creating the down arrow vector */
.custom-dropdown-wrapper::after {
    content: "▼";
    font-size: 11px;
    color: #777777; 
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%); 
    pointer-events: none; 
}

.custom-dropdown-wrapper:hover::after {
    color: #333333;
}


/*Mobile Responsive */
@media (max-width: 768px) {

    .container,
    .body-content,
    #MainContent,
    main,
    .row {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }



    .split-workspace-container {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .form-section {
        max-width: 100%;
        width: 100%;
    }

    .form-group {
        grid-template-columns: 100%;
    }

    .form-section label {
        text-align: left;
    }

    .form-section .form-control,
    .form-section input[type="text"],
    .form-section input[type="file"],
    .form-section select {
        grid-column: 1;
    }

    .form-section span[style*="color:Red"],
    .form-section .RequiredFieldValidator {
        grid-column: 1;
        text-align: left;
    }

    .output-preview-section {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    

    .card-builder-layout {
        /*    display: flex;
    align-items: flex-start;*/
        display: none;
        gap: 10px;
        font-family: Arial, sans-serif;
        padding: 10px;
        border: 1px dashed #bbb;
        width: fit-content;
    }

    .avatar-clickable-layout {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
    }

    .avatar-circle {
        width: 130px !important;
        height: 130px !important;
    }

    .text-group {
        text-align: left !important;
        width: auto !important;
    }

    .profile-name {
        font-size: 16px !important;
        white-space: normal;
    }

    .profile-title {
        font-size: 13px !important;
    }

    .qrcode-display {
        width: 150px !important;
        height: 150px !important;
        flex-shrink: 0;
    }
}

/*right side social media preview*/

.preview-links-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    width: 100%;
    padding: 0 15px;
}

.preview-link-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: transform 0.15s ease;
}

    .preview-link-item:hover {
        transform: translateY(-1px);
    }

    .preview-link-item img {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

.preview-link-arrow {
    margin-left: auto;
    color: #94a3b8;
    font-size: 12px;
}


.verified-badge {
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

.text-danger.small {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 15px;
    display: block;
}


/*Subscrption Plan and Pricing*/

.pricing-section {
    padding: 30px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.pricing-title {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-8px);
    }

    .pricing-card.featured {
        border: 3px solid #007bff;
        transform: scale(1.05);
    }

.plan-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 30px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.plan-duration {
    color: #6c757d;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .plan-features li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

.btn-plan {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/*End  Subscrption Plan and Pricing*/


.TS-textgreen {
    color: forestgreen;
    font-style: normal;
}

.TS-textblack {
    color: black !important;
    font-style: normal;
}

.TS-textwhite {
    text-align: center;
    color: #fff;
    font-style: normal;
}

.TS-textlightblue {
    color: #27aee1;
    font-style: normal;
}

.TS-textorange {
    color: orangered;
    font-style: normal;
}

.TS-textskyblue {
    color: #5bc0de;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
}

    .TS-textskyblue:hover {
        color: black;
    }

/*Black Banner*/
.TS-Sectionbg {
    background-color: #333;
    text-align: center;
    padding:5px;
    margin:0;
}

.disabled-blur {
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.5 !important;
    filter: blur(0.5px) !important;
}

/*-----------QR-Code page style -----------*/

.qr-dashboard-container {
    /*    max-width: 1000px;*/
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #efeeef;
   
}

/*.page-main-title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 30px;
    font-weight: 600;
}*/

.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive design for tablets and mobile */
@media (max-width: 900px) {
    .qr-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .qr-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    min-height: 140px;
}

    /* Default hover effect for standard cards */
    .qr-card:hover {
        border-color: #cbd5e1;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    /* Active highlight styling matching the 'vCard' placeholder image */
    .qr-card.active-selection {
        border: 2px solid #3399FF;
    }

.qr-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
                background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.qr-icon {
    width: 50px;
    height: 60px;
    stroke: #64748b;
    stroke: black;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Green icon for active vCard selection */
.qr-card.active-selection .qr-icon {
    stroke: #3399FF;
}

.qr-card.active-selection .qr-icon-wrapper {
    background-color: #f0fdf4;
}

.qr-label {
    font-size: 15px;
                color: #1e293b;
   
    font-weight: 500;
}


/*------Login seperator (External login) style start-------*/
.textlogin{
    font-size:18px;
}
/* "OR" Separator Lines */
.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #1e3a8a;
    font-weight: bold;
    font-family: sans-serif;
}

    .login-separator::before,
    .login-separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #cbd5e1; 
    }

    .login-separator:not(:empty)::before {
        margin-right: .5em;
    }

    .login-separator:not(:empty)::after {
        margin-left: .5em;
    }

/* Google Button*/
.external-login-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    padding: 12px;
    background-color: #f8fafc;
    border: none;
    border-radius: 4px;
    color: #1e293b;
    font-size: 18px;
    font-weight: 500;
    font-family: sans-serif;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background-color 0.2s;
}

    .btn-google:hover {
        background-color: #f1f5f9;
    }

   
/* Sign up Redirection Link */
.signup-prompt {
    text-align: center;
    font-family: sans-serif;
    font-size: 16px;
    color: #64748b;
    margin-bottom:10px;
   
}

.signup-prompt a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.signup-prompt a:hover {
    text-decoration: underline;
}
/*------Login seperator (External login) style end-------*/


/* content */
article {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

aside ul {
    list-style: none;
    padding: 0;
}

aside ul li {
    background: url("../Images/bullet.png") no-repeat 0 50%;
    padding: 2px 0 2px 20px;
}

.label {
    font-weight: 700;
}


a {
    color: #5bc0de;
    outline: none;
        padding-left: 3px;
    padding-right: 3px;
    text-decoration: none;
}

a:hover {
    color:black;
}

/*Ticker Tape with Chart
 ---------------------------------------------
*/

.skeleton,
#company-profile,
#fundamental-data,
#technical-analysis,
#top-stories,
#ticker-tape {
    text-align: center;
    padding: 16px;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.075);
    border-radius: 4px;
}

#ticker-tape {
    width: 100%;
    margin-bottom: var(--gap-size);
}

#symbol-info {
}

#advanced-chart {
    height: 500px;
}

.hometitle {
    font-size: 40px;
    color: #5bc0de;
    text-align:left;
}

.homeLabel {
    font-size: 18px;
    color: white;
    text-align: left;
}

/*Website style*/







/* main layout
----------------------------------------------------------*/
.content-wrapper {
    margin: 0 auto;
    max-width: 95%;
}

#body {
    background-color: #fff;
    clear: both;
    padding-bottom: 35px;
    padding-top: 20px;
}

.main-content {
    background: url("../Images/accent.png") no-repeat;
    padding-left: 5px;
    padding-top: 5px;
}

.featured + .main-content {
    background: url("../Images/heroAccent.png") no-repeat;
}

header .content-wrapper {
    padding-top: 20px;
}

footer {
    clear: both;
    background-color: #333;
   
    height: 150px;
}

/* footer
    ----------------------------------------------------------*/
footer .float-left,
footer .float-right {
    float: none;
}

footer {
    text-align: center;
    height: auto;
    padding: 10px 0;
}

footer p {
    margin: 0;
}

.footerlabel {
    color: #5bc0de;
}

/*social Media QR code generator*/

/* Container Box Styles */
.social-media-card {
    background: #ffffff;
    
}

.social-icon-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
    /* Selected Icon Highlight Border state */
    .social-btn.selected-platform {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    }

    .social-btn img {
        width: 20px;
        height: 20px;
    }

/* Row Styling Box Matching Attached Reference Image */
.social-input-group {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: none; /* Hidden by default */
    align-items: center;
    gap: 15px;
}


/* Becomes visible when active-field class is present */
.social-input-group.active-field {
    display: flex;
}

.platform-label-box {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    font-weight: 600;
}

    .platform-label-box img {
        width: 20px;
        height: 20px;
    }

.input-field-wrapper {
    flex-grow: 1;
}

.social-input-group .form-control {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 10px 14px;
    width: 100%;
}

    .social-input-group .form-control:focus {
        outline: none;
        border-color: #0056b3;
        box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
    }

/* Clear Input Row Cross Button */
.btn-close-field {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 22px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

    .btn-close-field:hover {
        color: #475569;
    }



/*  WhatsApp-QR style  */
.iti {
    width: 100%;
}


.form-row-align {
    display: flex;
    align-items: center;
    gap: 52px; 
    max-width: 700px;
}

/* Label structural configuration */
.row-label {
    font-size: 14px;
    color: #333;
    min-width: 140px; 
    
}

.input-combined-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 20px;
    background-color: #fff;
    flex-grow: 1;
    box-sizing: border-box;
    row-gap: 4px;
}

    .input-combined-group:focus-within {
        border-color: #4a90e2;
        box-shadow: 0 0 4px rgba(74, 144, 226, 0.3);
    }

/* Left side elements container layout alignment */
.input-prefix-container {
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px solid #e0e0e0;
    padding-right: 8px;
    margin-right: 8px;
}

.flag-icon {
    display: inline-block;
    vertical-align: middle;
}

.country-dropdown {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    outline: none;
    cursor: pointer;
}

/* Input window extension wrap */
.input-text-container {
    flex-grow: 1;
}

.form-control-combined {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}

.multiple-qr-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.individual-qr-card {
    background: #fff;
    flex: 0 1 calc(50% - 12px); /* Displays 2 per row side by side */
    min-width: 130px;
}
