@charset "UTF-8";
/* CSS Document */

/* Import modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/************* CSS RESET *************/

/*** Mike's CSS Reset ***/

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline; list-style: none}  img  {border-style: none;} * {margin: 0; padding: 0;} html  {	width: 100%;}  table {border-collapse: collapse;border-spacing: 0;} a{color: inherit;text-decoration: none;}a:link {color:inherit;text-decoration:underline;}
a:visited {color:inherit;text-decoration:none;}
a:hover {color: inherit;text-decoration:none;font-weight:500;}
a:active {color:inherit;text-decoration:none;}

*, div  {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}body {	line-height: 1;}ol, ul {	list-style: none;}blockquote, q {	quotes: none;}blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}table {	border-collapse: collapse;	border-spacing: 0;}


/************* MEDIA CALLS *************/

/***************/
/*   STANDARD  */
/***************/

@media (max-width: 640px) {}

/***************/
/*   HANDHELD  */
/***************/

@media only screen and (orientation:landscape) and (max-device-width:1024px)  {}



/************* SITE STYLING *************/

h1, h2, h3  {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
}

p  {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.clear  {clear: both;}


/* Colors came from this spot */

:root {--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);}

:root {--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);}

:root {--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);}

:root {--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);}

:root {--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);}

:root {--font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;}

:root {--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;}

div img  {
    width: 100%;
    height: auto;
}

input[type=text]  {
    width: 100%;
    height: auto;
    color: var(--black);
    border: 2px solid var(--dark-grey-2);
    padding: 12px 16px;
    background-color: transparent;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 15px;
    font-family: var(--font-body);
}

input[type=text]:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(121, 187, 67, 0.1);
}

select {
    width: 100%;
    height: auto;
    color: var(--black);
    border: 2px solid var(--dark-grey-2);
    padding: 12px 16px;
    background-color: transparent;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 15px;
    font-family: var(--font-body);
}

select:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(121, 187, 67, 0.1);
}

input[type=password]  {
    width: 100%;
    height: auto;
    color: var(--black);
    padding: 12px 16px;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 15px;
    font-family: var(--font-body);
}

input[type=password]:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(121, 187, 67, 0.1);
}

::placeholder {
    color: var(--light-grey);
    opacity: 1;
    font-family: var(--font-body);
}

:-ms-input-placeholder {
    color: var(--light-grey);
}

::-ms-input-placeholder {
    color: var(--light-grey);
}

.btn  {
    width: auto;
    height: auto;
    font-weight: 600;
    border: 2px solid var(--light-green);
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    font-family: var(--font-display);
}

input[type="text"].request_payment {
	margin-left: 25px;
	height:20px;
}

button.request_payment_button {
	padding-left: 3px;
	padding-right: 3px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.request_payment_button:disabled {
	background-color: var(--white);
	border: 2px solid var(--light-grey);
	color: var(--light-grey);
}

.btn_large  {
    font-size: 18px;
    padding: 14px 48px;
    border-radius: 14px;
}

.btn_small  {
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 10px;
}

.btn_green  {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn_white  {
    background-color: var(--white);
    color: var(--light-green);
    box-shadow: var(--shadow-sm);
}

.btn_green:hover  {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #88c952 0%, #149953 100%);
}

.btn_white:hover  {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border: none;
}

@font-face {
    font-family: 'Proxima';
    src: url('./../fonts/proxima_nova_extrabold-webfont.woff2') format('woff2'),
    url('./../fonts/proxima_nova_extrabold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima';
    src: url('./../fonts/proxima_nova_bold-webfont.woff2') format('woff2'),
    url('./../fonts/proxima_nova_bold-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima';
    src: url('./../fonts/proximanova-regular-webfont.woff2') format('woff2'),
    url('./../fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

body  {
    width: 100%;
    height: auto;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#body_bg  {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: -1;
}

#page  {
    width: 100%;
    height: auto;
    font-family: var(--font-body);
    font-weight: 400;
}

input[type=checkbox]  {
    width: 17px;
    height: 17px;
    border: none;
    float: left;
    appearance: none;
    margin: 0 0 0 12px;
    cursor: pointer;
    background-image: url('../images/cbox.svg') !important;
    background-size: 100% auto;
    background-position: top center;
}

input[type=checkbox]:checked  {background-position: bottom center;}

.alert_success,
.alert_failure  {
    font-size: 14px;
    line-height: 18px;
    margin: 12px 0;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 500;
}

.alert_success  {color: var(--light-green);}

.alert_failure  {color: var(--red);}



/************* LOGIN STYLING *************/

#login_container  {
    width: 100%;
    height: auto;
    overflow: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#login_container input[type=text]  {
    border: 0px;
    color: var(--black);
    font-style: normal;
}

#login_container input[type=password]  {
    border: 0px;
    color: var(--black);
}

#logo_login_container  {
    width: 100%;
    height: auto;
    padding: 48px 10px 38px 10px;
}

#logo_login_gd  {
    width: 100%;
    max-width: 246px;
    height: auto;
    margin: 0 auto;
}

#login_pane  {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    padding: 48px 44px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 112px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(121, 187, 67, 0.1);
}

#login_pane_logo_container  {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 30px;
}

#login_input_container  {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    border: 2px solid var(--light-grey);
    border-radius: 14px;
    padding: 16px;
    transition: var(--transition);
}

#login_input_container:focus-within {
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(121, 187, 67, 0.1);
}

#login_input_container input[type=text]  {
    padding: 0px;
}

#login_email  {padding-bottom: 6px !important; border-bottom: 1px solid var(--light-grey) !important;}

#login_password  {padding-top: 6px !important;}

#login_email,
#login_password  {padding-left: 2px; padding-right: 2px;}

#login_submit_container  {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 24px 0 38px 0;
}

#login_forgot_container  {
    width: 100%;
    height: auto;
}

.login_forgot_row  {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 14px;
    color: var(--light-green);
    font-family: var(--font-body);
    font-weight: 500;
}

#register_link  {
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 600;
}



/************* HEADER STYLING *************/

#header_container  {
    width: 100%;
    height: auto;
    padding: 24px 38px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#header_logo_left  {
    width: 50%;
    max-width: 180px;
    height: auto;
    float: left;
}

#header_logo_right  {
    width: 50%;
    max-width: 108px;
    height: auto;
    float: right;
    padding-top: 8px;
}

#toolbar_container  {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    padding: 12px 38px;
    box-shadow: var(--shadow-md);
}

#breadcrumbs_container  {
    width: 100%;
    height: auto;
    font-size: 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
}

.breadcrumb_item  {
    width: auto;
    height: auto;
    float: left;
    margin-right: 10px;
}

.breadcrumb_item a:link  {text-decoration: none;}

.breadcrumb_item img  {
    width: 15px;
    height: auto;
}

#hamburger_container  {display: none;}



/************* PAGE LAYOUT STYLING *************/

#main_container  {
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, #f8fafb, #ffffff);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
}

#main_left  {
    flex: 1 1 auto;
    min-width: 0;
    height: auto;
    padding: 22px 60px;
    order: 1;
}

#main_right  {
    width: 23%;
    max-width: 330px;
    height: auto;
    order: 2;
    align-self: flex-start;
}

#ad_container  {
    width: 100%;
    height: auto;
    background-color: black;
    color: var(--white);
    text-align: center;
    font-size: 26px;
    padding: 36px;
    margin-bottom: 26px;
    font-family: var(--font-display);
}

.page_content  {
    width: 100%;
    height: auto;
}

.page_title  {
    width: 100%;
    height: auto;
    color: var(--dark-green);
    font-weight: 800;
    font-size: 38px;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    font-family: var(--font-display);
}

.page_title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-green), transparent);
    border-radius: 2px;
}

.content_container  {
    width: 100%;
    height: auto;
    color: var(--black);
    font-size: 15px;
    line-height: 22px;
    font-family: var(--font-body);
}

.section_buffer  {margin-bottom: 50px;}

.page_subtitle  {
    width: 100%;
    height: auto;
    color: var(--dark-green);
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 18px;
    letter-spacing: -0.3px;
    font-family: var(--font-display);
}

.wide_btns .btn  {
    padding: 6px 30px;
    margin-right: 4px;
}



/************* SIDEBAR STYLING *************/

#sidebar_count_container  {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, var(--dark-green) 0%, #0a5c2e 100%);
    color: var(--white);
    padding: 44px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

#sidebar_count_container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#count_icon_container  {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 12px;
}

#count_icon_container img  {
    width: 100%;
    max-width: 54px;
    height: auto;
}

#sidebar_count_container div  {
    width: 100%;
    height: auto;
}

#count_line_1  {
    font-size: 18px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 500;
}

#sidebar_count_right  {
    width: 100%;
    height: auto;
}

#count_line_2  {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

#count_line_3  {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-display);
}

#sidebar_account_info_container  {
    width: 100%;
    height: auto;
    background-color: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

#account_info  {
    font-size: 15px;
    line-height: 26px;
    color: var(--dark-green);
    font-weight: 500;
    font-family: var(--font-body);
}

#sidebar_header  {
    width: 100%;
    height: auto;
    color: var(--dark-grey);
    font-size: 24px;
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-weight: 700;
}

#sidebar_edit_container  {
    width: 100%;
    height: auto;
    padding: 28px;
    background-color: var(--white);
    text-align: center;
    color: var(--dark-green);
    margin: 20px 0 0 0;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

#edit_borders  {
    width: 90%;
    margin: 0 auto;
    border-top: 2px solid rgba(17, 131, 66, 0.15);
    border-bottom: 2px solid rgba(17, 131, 66, 0.15);
    padding: 20px;
}

#sidebar_edit_container .btn  {margin-top: 8px;}



/************* WELCOME PAGE STYLING *************/

#balance_table  {
    width: 100%;
    height: auto;
    font-size: 15px;
    color: var(--dark-grey);
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.balance_table_row  {
    width: 100%;
    height: auto;
    padding: 16px 20px;
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.balance_table_row:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.balance_row_checkbox_container  {
    display: none;
    width: auto;
    height: auto;
    float: left;
    padding: 2px 6px 0 0;
}

.balance_row_name  {
    width: auto;
    min-width: 180px;
    height: auto;
    float: left;
    font-weight: 500;
}

.balance_row_amount  {
    width: auto;
    height: auto;
    float: left;
    color: var(--dark-green);
    font-weight: 600;
}

.balance_row_button  {
    width: auto;
    height: auto;
    float: left;
    color: var(--dark-green);
}



/************* ACCOUNT HISTORY PAGE STYLING *************/

#page_accounthistory #account_history  {display: none;}

#account_history_table  {
    width: 100%;
    height: auto;
}

.account_history_row  {
    width: 100%;
    height: auto;
    color: var(--dark-grey);
    padding: 18px 20px;
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-family: var(--font-body);
}

.account_history_row:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.account_history_row_company  {
    width: 40%;
    height: auto;
    float: left;
    font-weight: 500;
}

.account_history_row_date  {
    width: 30%;
    height: auto;
    float: left;
}

.account_history_row_amount  {
    width: 30%;
    height: auto;
    float: left;
    color: var(--dark-green);
    font-weight: 600;
}

#page_accounthistory .alert_success,
#page_accounthistory .alert_failure  {display: none;}



/************* REDEEM PAGE STYLING *************/

#page_redeem #account_redeem,
#page_redeem #account_history,
.request_payment  {display: none;}

#page_redeem .request_payment  {display: inline-block;}

.request_payment_button  {display: none;}

#page_redeem .request_payment_button  {display: inline-block;}

#page_redeem .balance_row_checkbox_container  {display: inline-block;}



/************* MY ACCOUNT STYLING *************/

.account_info_item_container  {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.account_info_item_container input[type=text]  {
    max-width: 340px;
    border-color: var(--light-grey);
}

.account_info_item_container select  {
    max-width: 340px;
    border-color: var(--light-grey);
}

.account_info_label {
    width: 200px;
    display: inline-block;
    font-weight: 600;
    color: var(--dark-grey);
    font-family: var(--font-body);
}



/************* SIGNUP STYLING *************/

#signup_container  {
    width: 100%;
    height: auto;
    overflow: auto;
}

#signup_container input[type=text], #signup_container select  {
    border: 2px solid var(--light-grey);
    color: var(--dark-grey);
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 8px;
}

#signup_container input[type=password]  {
    border: 2px solid var(--light-grey);
    color: var(--dark-grey);
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 8px;
}

#logo_signup_container  {
    width: 100%;
    height: auto;
    padding: 48px 10px 38px 10px;
}

#logo_signup_gd  {
    width: 100%;
    max-width: 246px;
    height: auto;
    margin: 0 auto;
}

#signup_pane  {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    padding: 48px 44px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 112px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(121, 187, 67, 0.1);
}

#signup_pane_logo_container  {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 30px;
}

#signup_input_container  {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border: 2px solid var(--light-grey);
    border-radius: 14px;
    padding: 16px;
    transition: var(--transition);
}

#signup_input_container:focus-within {
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(121, 187, 67, 0.1);
}

#password  {padding-bottom: 6px !important; border-bottom: 1px solid var(--light-grey) !important;}

#signup_submit_container  {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 24px 0 0 0;
}



/************* TABLET STYLING *************/

@media (max-width: 1024px) {

    #body_bg  {background-image: url('./../images/bg_login_tablet.jpg');}

    #main_left  {padding: 40px 60px;}

    #main_right  {
        width: 33%;
        max-width: none;
    }

    .account_history_row_company  {width: 65%;}

    .account_history_row_date  {width: 25%;}

    .account_history_row_amount  {width: 10%;}

}



/************* PHONE STYLING *************/

@media (max-width: 767px) {

    #breadcrumbs_container  {display: none;}

    #sidebar_count_container div  {float: left;}



    #main_left  {padding: 34px 30px;}

    #main_right #sidebar_account_info_container,
    #main_right #sidebar_edit_container  {display: none;}

    #sidebar_count_container  {
        margin-top: 20px;
        padding: 60px 12%;
        overflow: auto;
    }

    #count_icon_container  {
        width: 10% !important;
        padding-top: 20px;
    }

    #count_line_1  {
        width: 27% !important;
        padding-top: 20px;
    }

    #sidebar_count_right  {width: 63% !important;}

    .account_info_item_container  {margin-bottom: 8px;}

    .account_info_item_container input[type=text]  {
        max-width: none;
        border-radius: 8px;
        padding: 8px;
        border-width: 1px;
    }

    #toolbar_container  {padding: 14px 38px;}

    #hamburger_container  {
        display: inline-block;
        cursor: pointer;
    }

    #hamburger_container img  {
        width: 28px;
        height: auto;
    }

}



/************* MOBILE MENU STYLING *************/

#mobile_menu_panel  {
    width: 80%;
    height: auto;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background-color: var(--white);
    padding-top: 50px;
}

.show_mobile_menu  {
    left: 0 !important;
    box-shadow: 7px 0px 30px 0px rgba(0,0,0,0.7);
    -webkit-box-shadow: 7px 0px 30px 0px rgba(0,0,0,0.7);
    -moz-box-shadow: 7px 0px 30px 0px rgba(0,0,0,0.7);
}

#mobile_menu_inner  {
    width: 100%;
    height: auto;
    padding: 0 32px;
}

.mobile_menu_row  {
    width: 100%;
    height: auto;
    padding: 34px 0;
    font-size: 30px;
    color: var(--dark-grey);
    border-bottom: 2px solid var(--dark-green);
    font-family: var(--font-display);
    font-weight: 600;
}

.mobile_menu_row a:link  {text-decoration: none;}

#mobile_home_button_left  {
    width: 60px;
    height: auto;
    float: left;
}

#mobile_home_button_left img  {
    width: 36px;
    height: auto;
}

#mobile_home_button_middle  {
    width: auto;
    height: auto;
    float: left;
    padding-top: 4px;
}

#mobile_home_button_right  {
    width: 26px;
    height: auto;
    float: right;
    margin-top: -4px;
    cursor: pointer;
}

#mobile_home_button_right img  {
    width: 100%;
    height: auto;
}

#mobile_menu_panel #sidebar_account_info_container  {
    margin-top: 80px;
    background-color: transparent;
}

#mobile_menu_panel #edit_borders  {width: 100% !important;}

/************* MODERN DASHBOARD STYLING *************/


.container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    width: 100%;
    padding: 56px 48px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.header {
    text-align: center;
    margin-bottom: 48px;
}

.header h1 {
    color: var(--dark-green);
    font-size: 2.8em;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: var(--font-display);
}

.icon {
    font-size: 3.5em;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.intro {
    color: var(--dark-grey);
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-body);
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: var(--dark-green);
    font-size: 1.75em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
    font-family: var(--font-display);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 32px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(121, 187, 67, 0.35);
}

.stat-card h3 {
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-display);
}

.stat-card p {
    font-size: 2.2em;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: var(--font-display);
}

.rewards-list {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    padding: 28px;
    border-radius: 16px;
    border-left: 5px solid var(--light-green);
    box-shadow: var(--shadow-sm);
}

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

.rewards-list li {
    color: var(--dark-grey);
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    font-size: 1.05em;
    line-height: 1.6;
    font-family: var(--font-body);
}

.rewards-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
    font-size: 1.4em;
    width: 28px;
    height: 28px;
    background: rgba(121, 187, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 18px 56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15em;
    transition: var(--transition);
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.3px;
    font-family: var(--font-display);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(121, 187, 67, 0.4);
    color: white;
}

.footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    color: var(--dark-grey);
    font-size: 1em;
    line-height: 1.8;
    font-family: var(--font-body);
}

/* WELCOME PAGE MODERN STYLING */

.welcome-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.welcome-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.welcome-icon:hover {
    transform: rotate(-5deg) scale(1.05);
}

.rewards-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 32px 0;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 28px 0 36px 0;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    border-radius: 14px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.reward-item:hover {
    background: linear-gradient(135deg, rgba(161, 226, 91, 0.12) 0%, rgba(121, 187, 67, 0.08) 100%);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.reward-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.reward-text {
    color: var(--dark-grey);
    font-size: 15.5px;
    line-height: 1.5;
    font-weight: 400;
    font-family: var(--font-body);
}

.cta-section {
    text-align: center;
    padding: 24px 0;
}

.btn-modern {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 18px 56px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    font-family: var(--font-display);
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(121, 187, 67, 0.45);
    color: white;
}

.footer-message {
    text-align: center;
    color: var(--dark-grey);
    margin-top: 48px;
    padding-top: 36px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    font-size: 15.5px;
    line-height: 1.8;
    font-family: var(--font-body);
}

@media (max-width: 767px) {
    .modern-welcome-container {
        padding: 24px;
    }

    .stats-grid,
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .welcome-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .rewards-section {
        padding: 28px 20px;
    }

    .container {
        padding: 36px 28px;
    }

    .header h1 {
        font-size: 2em;
    }

    .section h2 {
        font-size: 1.4em;
    }
}
