/* Basic Reset */

/*
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
*/
/* Dashboard Wrapper */
#kingRadar-dashboard {
    padding: 0px 20px 20px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

/* Dashboard Applets/Tiles */
.dashboard-applet {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;  /* Ensure the tile takes up full width */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-applet:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

/* Tile Header */
.dashboard-applet h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333333;
}

/* Tile Content */
.dashboard-applet p, .dashboard-applet ul {
    font-size: 14px;
    color: #666666;
}

.dashboard-applet ul {
    list-style: none;
    margin-top: 10px;
}

/* Buttons */
.dashboard-applet .button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.dashboard-applet .button:hover {
    background-color: #0056b3;
}

/* Specific Styles */
.tracked-items-summary {
    background-color: #e7f3ff;
 /*   border-left: 5px solid #007bff; */
}

.notifications-summary {
    background-color: #fce8e6;
  /*  border-left: 5px solid #d9534f;*/
}

.historical-data-overview {
    background-color: #e9f5e9;
  /*  border-left: 5px solid #5cb85c;*/
}

.account-info {
    background-color: #fdfde9;
  /*  border-left: 5px solid #f0ad4e;*/
}





/* Hidden Info Section (Initially hidden) */
.url-hidden-info {
    display: none;
}



/* General Button Styling */
.url-button {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}




/* Delete Button */
.delete-button {
    background-color: #dc3545;
    color: #fff;
    border: 2px solid #dc3545;
}





.kingRadar-history-table-wrapper {
    width: 100%;
    overflow-x: auto; /* Make table responsive */
}

.kingRadar-history-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.kingRadar-history-table th, .kingRadar-history-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
}

.kingRadar-history-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.kingRadar-history-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.kingRadar-history-table tr:hover {
    background-color: #f1f1f1;
}

.kingRadar-history-table td {
    color: #333;
}

.kingRadar-history-table td.price {
    font-weight: bold;
    color: #2c3e50;
}

.kingRadar-history-table td.absolute_change, .kingRadar-history-table td.relative_change {
    color: #e74c3c;
}

.kingRadar-history-table td.relative_change.positive {
    color: #27ae60;
}



/* New Messages Summary */
.new-messages-summary {
    background-color: #fef3c7;  /* Light yellow background to highlight new messages */
}

.new-messages-summary p {
    font-size: 16px;
    color: #856404;  /* Brownish color for the message text */
}

.new-messages-summary strong {
    font-weight: bold;
    color: #d9534f;  /* Red color for the number of unread messages */
}



