/* My Account Dashboard Styling */

/* Main container */
.woocommerce-account .woocommerce {
    margin: 0 -15px;
}

/* Navigation menu */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
    box-shadow: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
    /* background-color: #fff; */
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    padding: 0;
    /* border-bottom: 1px solid #f0f0f0; */
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 16px 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #f9f9f9;
    color: #0EA0E4;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
}

/* Content area */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    padding: 0 15px;
    box-sizing: border-box;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Dashboard welcome message */
.woocommerce-account .woocommerce-MyAccount-content p:first-child {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Buttons */
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"] {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
}

.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover {
    background-color: #108dc7;
}

/* Tables */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-table--order-details,
.woocommerce-account .woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .woocommerce-table--order-details th,
.woocommerce-account .woocommerce-MyAccount-content table th {
    padding: 15px;
    text-align: left;
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce-account .woocommerce-orders-table td,
.woocommerce-account .woocommerce-table--order-details td,
.woocommerce-account .woocommerce-MyAccount-content table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    color: #555;
}

.woocommerce-account .woocommerce-orders-table tr:hover,
.woocommerce-account .woocommerce-table--order-details tr:hover,
.woocommerce-account .woocommerce-MyAccount-content table tr:hover {
    background-color: #f9f9f9;
}

/* Addresses */
.woocommerce-account .woocommerce-Addresses {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.woocommerce-account .woocommerce-Address {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.woocommerce-account .woocommerce-Address address {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-style: normal;
    line-height: 1.6;
}

.woocommerce-account .woocommerce-Address .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Forms */
.woocommerce-account form .form-row {
    padding: 0;
    margin: 0 0 20px;
}

.woocommerce-account form .form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.woocommerce-form-login .woocommerce-form-login__rememberme,
.woocommerce form.login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
}
.woocommerce-form-login .woocommerce-form-login__rememberme input {
    width: auto !important;
}
.woocommerce-form-login .woocommerce-form-login__rememberme label {
    flex: 1;
}

.woocommerce-account form .form-row input,
.woocommerce-account form .form-row textarea,
.woocommerce-account form .form-row select {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

/* File input styling - enhanced for manage products page */
.woocommerce-account form .form-row input[type="file"],
#add-artist-product-form input[type="file"],
#edit-artist-product-form input[type="file"],
.woocommerce-MyAccount-content input[type="file"],
.manage-products-content input[type="file"] {
    padding: 0;
    border: none;
    background: transparent;
    width: 100%;
    margin-bottom: 15px;
}

/* Style the native file input */
.woocommerce-account input[type="file"],
#add-artist-product-form input[type="file"],
#edit-artist-product-form input[type="file"],
.woocommerce-MyAccount-content input[type="file"],
.manage-products-content input[type="file"] {
    color: #333;
    font-size: 15px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
}

/* Style the file input button part */
.woocommerce-account input[type="file"]::-webkit-file-upload-button,
#add-artist-product-form input[type="file"]::-webkit-file-upload-button,
#edit-artist-product-form input[type="file"]::-webkit-file-upload-button,
.woocommerce-MyAccount-content input[type="file"]::-webkit-file-upload-button,
.manage-products-content input[type="file"]::-webkit-file-upload-button {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.woocommerce-account input[type="file"]::-webkit-file-upload-button:hover,
#add-artist-product-form input[type="file"]::-webkit-file-upload-button:hover,
#edit-artist-product-form input[type="file"]::-webkit-file-upload-button:hover,
.woocommerce-MyAccount-content input[type="file"]::-webkit-file-upload-button:hover,
.manage-products-content input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #108dc7;
}

/* Firefox specific styling */
.woocommerce-account input[type="file"]::file-selector-button,
#add-artist-product-form input[type="file"]::file-selector-button,
#edit-artist-product-form input[type="file"]::file-selector-button,
.woocommerce-MyAccount-content input[type="file"]::file-selector-button,
.manage-products-content input[type="file"]::file-selector-button {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.woocommerce-account input[type="file"]::file-selector-button:hover,
#add-artist-product-form input[type="file"]::file-selector-button:hover,
#edit-artist-product-form input[type="file"]::file-selector-button:hover,
.woocommerce-MyAccount-content input[type="file"]::file-selector-button:hover,
.manage-products-content input[type="file"]::file-selector-button:hover {
    background-color: #108dc7;
}

/* Current file display */
.woocommerce-account .current-file,
#add-artist-product-form .current-file,
#edit-artist-product-form .current-file,
.woocommerce-MyAccount-content .current-file,
.manage-products-content .current-file {
    /* margin-top: 10px; */
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.woocommerce-account .current-file a,
#add-artist-product-form .current-file a,
#edit-artist-product-form .current-file a,
.woocommerce-MyAccount-content .current-file a,
.manage-products-content .current-file a {
    color: #333;
    text-decoration: underline;
    margin-left: 5px;
}

.woocommerce-account .current-file a:hover,
#add-artist-product-form .current-file a:hover,
#edit-artist-product-form .current-file a:hover,
.woocommerce-MyAccount-content .current-file a:hover,
.manage-products-content .current-file a:hover {
    color: #0EA0E4;
}

/* Current image display */
.woocommerce-account .current-image,
#add-artist-product-form .current-image,
#edit-artist-product-form .current-image,
.woocommerce-MyAccount-content .current-image,
.manage-products-content .current-image {
    /* margin-top: 10px; */
    margin-bottom: 15px;
}

.woocommerce-account .current-image img,
#add-artist-product-form .current-image img,
#edit-artist-product-form .current-image img,
.woocommerce-MyAccount-content .current-image img,
.manage-products-content .current-image img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 5px;
}

.woocommerce-account form .form-row input:focus,
.woocommerce-account form .form-row textarea:focus,
.woocommerce-account form .form-row select:focus {
    outline: none;
    border-color: #0EA0E4;
    box-shadow: 0 0 0 2px rgba(163, 230, 53, 0.2);
}

/* Payment methods */
.woocommerce-account .woocommerce-PaymentMethods {
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce-account .woocommerce-PaymentMethod {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

/* Downloads */
.woocommerce-account .woocommerce-MyAccount-downloads-file {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
    padding: 8px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.woocommerce-account .woocommerce-MyAccount-downloads-file:hover {
    background-color: #108dc7;
}

/* Artist specific sections */
.woocommerce-account .artist-sales-content,
.woocommerce-account .manage-products-content {
    margin-top: 20px;
}

.woocommerce-account .artist-sales-content h2,
.woocommerce-account .manage-products-content h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content,
    .woocommerce-account .woocommerce-Address {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        margin-bottom: 30px;
    }
}

/* Add product and edit product forms */
#add-artist-product-form,
#edit-artist-product-form {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

#add-artist-product-form button[type="submit"],
#edit-artist-product-form button[type="submit"] {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    width: 100%;
}

#add-artist-product-form button[type="submit"]:hover,
#edit-artist-product-form button[type="submit"]:hover {
    background-color: #108dc7;
}

/* Form message styling */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

/* Password Reset Form Styling */
.woocommerce-account .woocommerce-ResetPassword,
.woocommerce-ResetPassword {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-ResetPassword p:first-of-type,
.woocommerce-ResetPassword p:first-of-type {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.woocommerce-account .woocommerce-ResetPassword .woocommerce-form-row,
.woocommerce-ResetPassword .woocommerce-form-row {
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce-account .woocommerce-ResetPassword label,
.woocommerce-ResetPassword label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.woocommerce-account .woocommerce-ResetPassword input[type="text"],
.woocommerce-account .woocommerce-ResetPassword input[type="password"],
.woocommerce-ResetPassword input[type="text"],
.woocommerce-ResetPassword input[type="password"] {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.woocommerce-account .woocommerce-ResetPassword input[type="text"]:focus,
.woocommerce-account .woocommerce-ResetPassword input[type="password"]:focus,
.woocommerce-ResetPassword input[type="text"]:focus,
.woocommerce-ResetPassword input[type="password"]:focus {
    outline: none;
    border-color: #0EA0E4;
    box-shadow: 0 0 0 2px rgba(163, 230, 53, 0.2);
}

.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button,
.woocommerce-ResetPassword .woocommerce-Button {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    width: 100%;
    text-align: center;
}

.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button:hover,
.woocommerce-ResetPassword .woocommerce-Button:hover {
    background-color: #108dc7;
}

/* Password strength meter */
.woocommerce-password-strength {
    margin-top: 10px;
    padding: 8px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
}

.woocommerce-page form .show-password-input {
    margin-top: -10px;
}

.woocommerce-password-strength.short {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.woocommerce-password-strength.bad {
    background-color: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffe082;
}

.woocommerce-password-strength.good {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.woocommerce-password-strength.strong {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.woocommerce-password-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Apply MyAccount button style to checkout place order button */
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button,
.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    background-color: #0EA0E4;
    color: #000;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
}

.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button:hover,
.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
    background-color: #108dc7;
}

/* Login page styling */
.woocommerce-account h1.entry-title,
.woocommerce-account .woocommerce h2 {
    display: none;
}

.woocommerce-account .woocommerce {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 50px auto;
    max-width: 1200px;
}

.woocommerce-account .woocommerce .woocommerce-form-login {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

/* Site logo styling */
.woocommerce-account .woocommerce .woocommerce-form-login::before {
    content: '';
    display: block;
    background-image: url('/wp-content/plugins/tipping-addons-jetengine/includes/assets/logo.webp'); /* Updated to webp format */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 180px;
    height: 60px;
    margin: 0 auto 30px;
}

/* Form styling improvements */
.woocommerce-account .woocommerce-form-login .form-row {
    margin-bottom: 20px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
}

.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword {
    text-align: center;
    margin-top: 20px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword a:hover {
    color: #a3e635;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #454745;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 100px;
}

/* Active and Hover States */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: rgba(22,51,0,0.07843);
    color: #163300;
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:hover:not(.is-active) a {
    background: #F7F8FA;
    color: #1A202C;
}


/* Product Management Styling */
.product-management-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-management-header h2 {
    margin: 0;
}

.product-management-header .see-all {
    display: inline-flex;
    flex: none;
    width: auto;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    word-wrap: break-word;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #0EA0E4;
    border: none;
    border-radius: 4px;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.product-management-header .see-all:hover {
    background-color: #108dc7;
    color: #fff;
    text-decoration: none;
}

.product-list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.product-item:hover {
    background-color: rgba(22,51,0,0.07843);
}

.product-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details-delete {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details-delete h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.product-details-delete p {
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1;
}

.product-main h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.product-date {
    color: #666;
    font-size: 14px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.status-live {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-pending {
    background-color: #fff3e0;
    color: #ef6c00;
}

.product-price {
    font-weight: 500;
    font-size: 16px;
}

.edit-button {
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
}

.edit-button:hover {
    text-decoration: underline;
}

/* my sales / tips */
/* Sales Management Styling */
.sales-management-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sales-management-header h2 {
    margin: 0;
}

.sales-list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.sale-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.sale-item:hover {
    background-color: rgba(22,51,0,0.07843);
}

.sale-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sale-main {
    display: flex;
    flex-direction: column;
}

.sale-main h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.sale-date {
    color: #666;
    font-size: 14px;
}

.sale-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sale-status {
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 14px;
}

.sale-amount {
    font-weight: 600;
    font-size: 16px;
    color: #163300;
}

.sale-currency {
    color: #666;
    font-size: 14px;
    margin-left: 4px;
}

.tips-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 6px;
}

.total-tips {
    margin-bottom: 0 !important;
    font-size: 1.1em;
    font-weight: 500;
}

.withdraw-money-btn {
    background-color: #2271b1 !important;
    color: #fff !important;
}

.withdraw-money-btn:hover {
    background-color: #135e96 !important;
}

.status-completed {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-processing {
    background-color: #e3f2fd;
    color: #1565c0;
}

.status-cancelled {
    background-color: #ffebee;
    color: #c62828;
}

.artist-profile-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.profile-image-section {
    margin-bottom: 30px;
}

.current-profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px 0;
    background: #f5f5f5;
}

.current-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.social-links {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.social-links p {
    margin-bottom: 15px;
}

.form-message {
    margin-bottom: 20px;
}

.form-message.success {
    color: #2e7d32;
    background: #e8f5e9;
    padding: 10px;
    border-radius: 4px;
}

.form-message.error {
    color: #c62828;
    background: #ffebee;
    padding: 10px;
    border-radius: 4px;
}