html {
    min-height: 100%;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100%;
    background: #061d33;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

.no-js-message {
    color: white;
    position: absolute;
    width: 100%;
    padding: 50px;
    background: #000000e0;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

p {
    font-weight: 600;
}

ul {
    text-align: left;
    margin-top: 20px;
    padding: 0 20px;
}

li > button {
    font-weight: 800; 
    background: none;
    border: none;
    float: right;
    color: #ffffff94;
}

.flex-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-title {
    padding: 50px 0;
    font-weight: bold;
}

.page-title h1 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    font-family: 'Adamina', 'Georgia', serif;
    letter-spacing: 5px;
    font-size: 30px;
}

.input-group {
	margin-bottom: 5px;
}
.social-share-buttons a {
  text-decoration: none;
}

.share-tool-section {
	text-align: center;
}

.share-tool-section .social-share-buttons {
    padding: 10px 20px;
    background: none;
}

.share-tool-section .social-share-buttons a {
    color: #ffffff99;
    padding: 8px;
}

.share-tool-section .social-share-buttons a i {
    border: 1px solid #ffffff21;
    padding: 10px;
    border-radius: 6px;
}


/* App styles */

.daily-goals-app {
    margin-bottom: 40px;
}

.app-container {
    max-width: 500px;
    margin-right: auto;
	margin-left: auto;
    background: white;
    text-align: center;
    overflow: hidden;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: relative;
}



/* Daily Goals Checklist App Styles */

.goal-tracker {
    text-align: left;
}

.goal-form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.goal-form input[type="text"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    margin-right: 10px;
    transition: border 0.2s ease;
	min-width: 230px;
}

.goal-form input[type="text"]:focus {
    border-color: #061d33;
}

.goal-form button {
    background: #061d33;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.goal-form button:hover {
    background: #0c2c4d;
}

/* Goal List */
.goal-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.goal-list li {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 6px;
	border: 1px solid #f2f2f2;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: background 0.2s ease;
}

.goal-list li:hover {
    background: #f0f0f0;
}

.goal-list input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.2);
    cursor: pointer;
}

.goal-list span {
    flex: 1;
    word-break: break-word;
}

/* Delete button */
.goal-list button.delete-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.goal-list button.delete-btn:hover {
    color: #d9534f;
}

.goal-list li.completed {
    background: #c8ffe1;
}

.goal-list li.completed span {
    text-decoration: line-through;
    opacity: 0.8;
}


.weekly-tracker {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.weekly-tracker .day {
    flex: 1;
    margin: 0 3px;
    padding: 10px;
    background: #f1f1f1;
	color: #061d33;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    cursor: default;
    transition: background 0.2s ease;
}

.weekly-tracker .day.completed {
    background: #c8ffe1;
}

.yearly-stats {
    margin-top: 25px;
    padding: 30px 0px;
    font-size: 14px;
    color: #061d33;
    text-align: center;
    background: #f1f1f1ba;
    border-radius: 10px;
	border: dashed 2px #e3e3e3;
}

.yearly-stats .stats {
    width: fit-content;
    margin: auto;
    text-align: left;
}

.yearly-stats .award-icon i {
    color: #061d33;
    margin-bottom: 1.3rem;
    font-size: 70px;
}

.yearly-stats h2 {
	width: fit-content;
    margin: auto;
    border-bottom: 2px solid #c0c0c0;
    padding-bottom: 6px;
    margin-bottom: 17px;
}


.note {
	text-align: left;
    background: #f0f0f0;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #555555c7;
	margin-top: 50px;
}

.note p {
	text-align: left;
	font-size: 14px;
    font-weight: 500;
}

.reset-info {
    font-size: 14px;
    text-align: center;
}






/* End App styles */


footer {
    padding: 15px 20px;
    color: #ffffff6e;
    font-family: sans-serif;
    text-align: center;
    font-size: 15px;
    letter-spacing: .2px;
}

footer a {
    color: #ff9901;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

footer .made-by {
    color: white;
}

footer .footer-copyright {
    font-size: 14px;
    line-height: 1.4;
    font-weight: lighter;
}
