/*
Theme Name: MojaNutka
Description: Modern WordPress theme for personalized song ordering service
Version: 1.1.5
Author: MojaNutka Team
Text Domain: mojanutka
*/

/* CSS Variables for consistent theming */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --border-radius: 12px;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--bg-light);
}

/* Header */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-logo-image {
    flex-shrink: 0;
}

.site-logo-image img {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    margin-right: 8px;
}

.site-logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}


.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a.current {
    color: var(--primary-color);
}

.header-content {
    position: relative;
}

/* Cart Icon Styles */
.menu-cart {
    position: relative;
}

.cart-link {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.cart-link:hover {
    background: rgba(99, 102, 241, 0.1);
}

.cart-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.cart-count {
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 50px;
    line-height: 1;
    min-width: 1.25rem;
    text-align: center;
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    animation: cartPulse 0.3s ease-out;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile cart styles */
@media (max-width: 768px) {
    .cart-link {
        padding: 0.75rem !important;
    }
    
    .cart-icon {
        font-size: 1.1rem;
    }
    
    .cart-count {
        font-size: 0.7rem;
        padding: 0.1rem 0.3rem;
        min-width: 1.1rem;
    }
    
    /* Position cart in mobile header */
    .header-content {
        position: relative;
    }
    
    .menu-cart {
        position: absolute;
        right: 50px; /* Leave space for menu toggle */
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    /* In mobile menu, display cart normally */
    .main-navigation.active .menu-cart {
        position: static;
        transform: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-navigation.active .menu-cart .cart-link {
        display: block !important;
        padding: 1rem 1.5rem !important;
        background: none !important;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 4px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop navigation styles */
.main-navigation {
    display: block;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    backdrop-filter: blur(10px);
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { 
    grid-template-columns: repeat(2, 1fr); 
}

.grid-3 { 
    grid-template-columns: repeat(3, 1fr); 
}

.grid-4 { 
    grid-template-columns: repeat(4, 1fr); 
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Mobile logo adjustments */
    .site-logo-text {
        font-size: 1.25rem;
    }
    
    .site-logo-image img {
        height: 40px;
        max-width: 40px;
    }
    
    .site-logo-wrapper {
        gap: 0.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-control.error {
    border-color: var(--error-color);
}

.form-error {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Package Cards */
.package-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'Najpopularniejszy';
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.package-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonial {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.footer-section ul li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.7rem;
    top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.legal-links a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .legal-links {
        gap: 1rem;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
}

/* Legal Documents Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.legal-section h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.data-processing-table {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.processing-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.processing-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.processing-item p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* New table styles for privacy policy */
.admin-table,
.data-table,
.processing-table,
.retention-table,
.definitions-table,
.terms-table,
.cookies-table,
.corrections-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-table td,
.data-table th,
.data-table td,
.processing-table th,
.processing-table td,
.retention-table th,
.retention-table td,
.definitions-table th,
.definitions-table td,
.terms-table th,
.terms-table td,
.cookies-table th,
.cookies-table td,
.corrections-table th,
.corrections-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table td:first-child {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    width: 30%;
}

.data-table thead,
.processing-table thead,
.retention-table thead,
.definitions-table thead,
.terms-table thead,
.cookies-table thead,
.corrections-table thead {
    background: var(--primary-color);
    color: white;
}

.data-table th,
.processing-table th,
.retention-table th,
.definitions-table th,
.terms-table th,
.cookies-table th,
.corrections-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Specific styles for definitions table */
.definitions-table td:first-child {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    width: 25%;
}

/* Style for blockquotes in legal sections */
.legal-section blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.legal-section blockquote strong {
    color: var(--primary-color);
}

/* Style for ordered lists in legal sections */
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-section ol ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.data-table tbody tr:nth-child(even),
.processing-table tbody tr:nth-child(even),
.cookies-table tbody tr:nth-child(even),
.definitions-table tbody tr:nth-child(even),
.corrections-table tbody tr:nth-child(even),
.terms-table tbody tr:nth-child(even),  
.retention-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.data-table tbody tr:hover,
.processing-table tbody tr:hover,
.cookies-table tbody tr:hover,
.definitions-table tbody tr:hover,
.corrections-table tbody tr:hover,
.terms-table tbody tr:hover,
.retention-table tbody tr:hover {
    background: #e0e7ff;
}

.notice {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.notice p {
    margin: 0;
    color: var(--text-dark);
}

.legal-section blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.legal-section blockquote p {
    margin: 0;
    font-style: normal;
    color: var(--text-dark);
}

.legal-section hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 2rem 0;
    border-radius: 1px;
}

.legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ol li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive tables */
@media (max-width: 768px) {
    .data-table,
    .processing-table,
    .retention-table,
    .definitions-table,
    .terms-table,
    .cookies-table,
    .corrections-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .admin-table {
        display: block;
    }
    
    .admin-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    
    .admin-table td {
        border-bottom: none;
        width: 100% !important;
    }
    
    .admin-table td:first-child {
        border-bottom: 1px solid var(--border-color);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        background: var(--bg-white);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Adjust when cart is present */
    .header-content:has(.menu-cart) .menu-toggle {
        right: 0; /* Cart will position itself relative to toggle */
    }
    
    /* Mobile navigation setup */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .main-navigation.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        margin: 0;
        list-style: none;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--text-dark);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
    }
    
    .main-navigation a:hover,
    .main-navigation a.current {
        background: var(--bg-light);
        color: var(--primary-color);
    }

    .hero {
        margin-top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .package-card.featured {
        transform: none;
    }
    
    .site-header {
        position: sticky;
        top: 0;
        background: var(--bg-white);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }

/* WordPress Specific */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-button .wp-block-button__link {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.875rem 2rem;
    transition: var(--transition);
}

.wp-block-button .wp-block-button__link:hover {
    background: var(--primary-dark);
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}
