/* Main Shared Styles */
body {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    color: #34495e;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: normal;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo i {
    font-size: 64px;
    color: #3498db;
    margin-bottom: 10px;
}

.container {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    margin: 10px 0;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

.back-btn {
    background-color: #7f8c8d;
    color: white;
    margin-top: 20px;
}

.back-btn:hover {
    background-color: #6c7a7a;
}

.help-text {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
    text-align: center;
}

.notification {
    padding: 10px;
    background-color: #2ecc71;
    color: white;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.show-notification {
    opacity: 1;
}

/* Home Page Specific Styles */
.tool-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 36px;
    color: #3498db;
    width: 70px;
    text-align: center;
}

.tool-content {
    flex: 1;
}

.tool-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.tool-description {
    color: #7f8c8d;
    margin-bottom: 10px;
}

.tool-link {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.tool-link:hover {
    background-color: #2980b9;
}

.footer {
    text-align: center;
    margin-top: 40px;
    color: #7f8c8d;
    font-size: 14px;
}